forked from mico/idle_moloch
7 lines
152 B
Solidity
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;
|
|
}
|