{
    "Function": "initializeFollowModule",
    "File": "contracts/mocks/MockFollowModule.sol",
    "Parent Contracts": [
        "contracts/interfaces/IFollowModule.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "abi.decode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function initializeFollowModule(uint256 profileId, bytes calldata data)\n        external\n        pure\n        override\n        returns (bytes memory)\n    {\n        uint256 number = abi.decode(data, (uint256));\n        require(number == 1, 'MockFollowModule: invalid');\n        return new bytes(0);\n    }"
}