cf9c4875a0
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
17 lines
272 B
Go
17 lines
272 B
Go
package command
|
|
|
|
import "github.com/sirupsen/logrus"
|
|
|
|
const (
|
|
ServerDescription = "Server Description"
|
|
ServerHelp = "Help text here"
|
|
)
|
|
|
|
type Server struct {
|
|
}
|
|
|
|
func (c *Server) Execute(args []string) error {
|
|
logrus.Info("starting server command")
|
|
|
|
return nil
|
|
}
|