summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r--cmd/rr/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
index 3d15924b..ed47b2ed 100644
--- a/cmd/rr/main.go
+++ b/cmd/rr/main.go
@@ -36,13 +36,13 @@ import (
func main() {
// provides ability to make local connection to services
- rr.Container.Register(rpc.Name, new(rpc.Service))
+ rr.Container.Register(rpc.Name, &rpc.Service{})
// http serving
- rr.Container.Register(http.Name, new(http.Service))
+ rr.Container.Register(http.Name, &http.Service{})
// serving static files
- rr.Container.Register(static.Name, new(static.Service))
+ rr.Container.Register(static.Name, &static.Service{})
// you can register additional commands using cmd.CLI
rr.Execute()