summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-13 22:24:47 +0300
committerWolfy-J <[email protected]>2018-06-13 22:24:47 +0300
commitdf4c11fb59b8ffca369f14eededda82884ee4dad (patch)
treec59b4af544cf11008739313a54b878cc20db793d /cmd/rr/main.go
parent235adef3eef67888e4c391b28cedadfb3f8874e3 (diff)
more tests + rpc tests
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r--cmd/rr/main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
index 68311da2..5b73d326 100644
--- a/cmd/rr/main.go
+++ b/cmd/rr/main.go
@@ -42,13 +42,13 @@ var debugMode bool
func main() {
// provides ability to make local connection to services
- rr.Container.Register(rpc.Name, &rpc.Service{})
+ rr.Container.Register(rpc.ID, &rpc.Service{})
// http serving
- rr.Container.Register(http.Name, &http.Service{})
+ rr.Container.Register(http.ID, &http.Service{})
// serving static files
- rr.Container.Register(static.Name, &static.Service{})
+ rr.Container.Register(static.ID, &static.Service{})
// provides additional verbosity
@@ -56,7 +56,7 @@ func main() {
rr.CLI.PersistentFlags().BoolVarP(&debugMode, "debug", "d", false, "debug mode", )
cobra.OnInitialize(func() {
if debugMode {
- service, _ := rr.Container.Get(http.Name)
+ service, _ := rr.Container.Get(http.ID)
service.(*http.Service).AddListener(debug.NewListener(rr.Logger).Listener)
}
})