summaryrefslogtreecommitdiff
path: root/cmd/rr/http
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/rr/http')
-rw-r--r--cmd/rr/http/register.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/rr/http/register.go b/cmd/rr/http/register.go
new file mode 100644
index 00000000..a670427c
--- /dev/null
+++ b/cmd/rr/http/register.go
@@ -0,0 +1,10 @@
+package http
+
+import (
+ rr "github.com/spiral/roadrunner/cmd/rr/cmd"
+ "github.com/spiral/roadrunner/http"
+)
+
+func init() {
+ rr.Bus.Register(&http.Service{})
+}