This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/cmd/cmd.go

18 lines
263 B
Go
Raw Normal View History

2021-01-03 03:21:11 +00:00
package cmd
import (
"fmt"
"github.com/urfave/cli"
)
var CmdServe = cli.Command{
Name: "serve",
Usage: "Start Imagini web server.",
Action: serveWeb,
}
func serveWeb(ctx *cli.Context) error {
fmt.Println("hello world")
return nil
}