idle_moloch/lib/Baal/contracts/interfaces/IPoster.sol
2024-11-01 11:55:27 +01:00

7 lines
152 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface IPoster {
function post(string calldata content, string calldata tag) external;
}