{
    "Function": "_onlyGovernor",
    "File": "contracts/governance/Managed.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IController"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _onlyGovernor() internal view {\n        require(msg.sender == controller.getGovernor(), \"Caller must be Controller governor\");\n    }"
}