diff options
author | Wolfy-J <[email protected]> | 2018-07-28 16:42:45 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-28 16:42:45 +0300 |
commit | 4ffab541f2d8a4f60b5e9090979280ca6b2d659f (patch) | |
tree | c70e0d10aba1b51dc67e7c75fe441b66af937bfd /cmd/rr | |
parent | ff5defec559b8f4d47846fe0fdb957c3be0af3eb (diff) |
Update main.go
Diffstat (limited to 'cmd/rr')
-rw-r--r-- | cmd/rr/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go index 2c005175..b34ae7c3 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -39,8 +39,9 @@ import ( func main() { rr.Logger.Formatter = &logrus.TextFormatter{ForceColors: true} - rr.Container.Register(rpc.ID, &rpc.Service{}) rr.Container.Register(env.ID, env.NewService(map[string]string{"rr": rr.Version})) + + rr.Container.Register(rpc.ID, &rpc.Service{}) rr.Container.Register(http.ID, &http.Service{}) rr.Container.Register(static.ID, &static.Service{}) |