summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-07-08 21:12:01 -0700
committerWolfy-J <[email protected]>2018-07-08 21:12:01 -0700
commitca92fcaf9b2290b3bf2124eed6b0db6860010712 (patch)
treec7204f989798b61775f9c7a27f6f7d35a222c9ac /cmd/rr/main.go
parent5f36cab25482341458d8013bfe95900fdf62456d (diff)
mod updated
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r--cmd/rr/main.go67
1 files changed, 0 insertions, 67 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
deleted file mode 100644
index 03bef9bd..00000000
--- a/cmd/rr/main.go
+++ /dev/null
@@ -1,67 +0,0 @@
-// MIT License
-//
-// Copyright (c) 2018 SpiralScout
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in all
-// copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-// SOFTWARE.
-
-package main
-
-import (
- rr "github.com/spiral/roadrunner/cmd/rr/cmd"
-
- // services (plugins)
- "github.com/spiral/roadrunner/service/http"
- "github.com/spiral/roadrunner/service/rpc"
- "github.com/spiral/roadrunner/service/static"
-
- // cli plugins
- "github.com/spiral/roadrunner/cmd/rr/debug"
- _ "github.com/spiral/roadrunner/cmd/rr/http"
-
- "github.com/sirupsen/logrus"
- "github.com/spf13/cobra"
-)
-
-var debugMode bool
-
-func main() {
- // forcing text based logging
- rr.Logger.Formatter = &logrus.TextFormatter{ForceColors: true}
-
- // provides ability to make local connection to services
- rr.Container.Register(rpc.ID, &rpc.Service{})
-
- // http serving
- rr.Container.Register(http.ID, &http.Service{})
-
- // serving static files
- rr.Container.Register(static.ID, &static.Service{})
-
- // debug mode
- rr.CLI.PersistentFlags().BoolVarP(&debugMode, "debug", "d", false, "debug mode")
- cobra.OnInitialize(func() {
- if debugMode {
- service, _ := rr.Container.Get(http.ID)
- service.(*http.Service).AddListener(debug.Listener(rr.Logger))
- }
- })
-
- // you can register additional commands using cmd.CLI
- rr.Execute()
-}