tstor/ipfs/cmd/distribyted/command/server.go
Antonio Navarro Perez cf9c4875a0 Init commit
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
2019-12-08 13:55:33 +01:00

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
}