diff options
author | Wolfy-J <[email protected]> | 2018-06-03 12:58:52 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-03 12:58:52 +0300 |
commit | 89b1e86b6e3fbb099ba6bd34ac0501f752b4514c (patch) | |
tree | 16bce58e73970caf8f991da009f9b4af86497842 /cmd/rr/http | |
parent | 0e2fc4b5e21d115850ece2bd44f21fc5b335c41d (diff) |
simplier stuff
Diffstat (limited to 'cmd/rr/http')
-rw-r--r-- | cmd/rr/http/register.go | 10 |
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{}) +} |