summaryrefslogtreecommitdiff
path: root/service/rpc/system.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/rpc/system.go')
-rw-r--r--service/rpc/system.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/service/rpc/system.go b/service/rpc/system.go
deleted file mode 100644
index ffba3782..00000000
--- a/service/rpc/system.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package rpc
-
-import "github.com/spiral/roadrunner/service"
-
-// systemService service controls rr server.
-type systemService struct {
- c service.Container
-}
-
-// Detach the underlying c.
-func (s *systemService) Stop(stop bool, r *string) error {
- if stop {
- s.c.Stop()
- }
- *r = "OK"
-
- return nil
-}