aboutsummaryrefslogtreecommitdiffstats
path: root/std/service
blob: 48efae0e44794843234b2ed9cb3a1de15aba7066 (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);
    }
}