diff options
author | Anton Titov <[email protected]> | 2020-02-23 16:46:15 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-23 16:46:15 +0300 |
commit | 954fa52704af5e9d7745de759743e16b3b7b563c (patch) | |
tree | f80a4d4cf8d7725491aa8aa3939fdbd4d17c13e3 /cmd/rr/main.go | |
parent | 99b8de5cef068446b58899d76fa02cd286837c49 (diff) | |
parent | 74f35de85648d36b328d01656c3857c11217d3b0 (diff) |
Merge pull request #253 from spiral/file_watcher_module
File watcher module
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r-- | cmd/rr/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go index ef393426..54a1f060 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -33,6 +33,7 @@ import ( "github.com/spiral/roadrunner/service/http" "github.com/spiral/roadrunner/service/limit" "github.com/spiral/roadrunner/service/metrics" + "github.com/spiral/roadrunner/service/reload" "github.com/spiral/roadrunner/service/rpc" "github.com/spiral/roadrunner/service/static" @@ -51,6 +52,7 @@ func main() { rr.Container.Register(limit.ID, &limit.Service{}) rr.Container.Register(health.ID, &health.Service{}) rr.Container.Register(gzip.ID, &gzip.Service{}) + rr.Container.Register(reload.ID, &reload.Service{}) // you can register additional commands using cmd.CLI rr.Execute() |