mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
18 lines
273 B
Go
18 lines
273 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/railwayapp/cli/configs"
|
|
"github.com/railwayapp/cli/controller"
|
|
)
|
|
|
|
type Handler struct {
|
|
ctrl *controller.Controller
|
|
cfg *configs.Configs
|
|
}
|
|
|
|
func New() *Handler {
|
|
return &Handler{
|
|
ctrl: controller.New(),
|
|
cfg: configs.New(),
|
|
}
|
|
}
|