aboutsummaryrefslogtreecommitdiffstats
path: root/std/service
blob: 31ef8da71e8697b71ef678c6aa05e5dd2e378592 (plain) (blame)
1
2
3
4
5
6
7
8
import "Config";
import "configUser";

contract service is configUser {
    function service(uint _n) {
        Config(configAddr()).register(_n, this);
    }
}