11 lines
339 B
Solidity
11 lines
339 B
Solidity
|
pragma solidity >=0.6.12;
|
||
|
|
||
|
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
// File-version: 1
|
||
|
|
||
|
interface IACL {
|
||
|
// Returns true if the address has permission to operate in the given context.
|
||
|
function have(address _address) external view returns(bool);
|
||
|
}
|