mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
import "./Config";
|
|
import "./configUser";
|
|
|
|
contract service is configUser {
|
|
function service(uint _n) {
|
|
Config(configAddr()).register(_n, this);
|
|
}
|
|
}
|