summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-07-28 16:42:45 +0300
committerGitHub <[email protected]>2018-07-28 16:42:45 +0300
commit4ffab541f2d8a4f60b5e9090979280ca6b2d659f (patch)
treec70e0d10aba1b51dc67e7c75fe441b66af937bfd /cmd
parentff5defec559b8f4d47846fe0fdb957c3be0af3eb (diff)
Update main.go
Diffstat (limited to 'cmd')
-rw-r--r--cmd/rr/main.go3
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{})