mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
205 B
Plaintext
7 lines
205 B
Plaintext
contract Config {
|
|
function lookup(uint256 service) constant returns (address a) {}
|
|
function kill() {}
|
|
function unregister(uint256 id) {}
|
|
function register(uint256 id, address service) {}
|
|
}
|