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
2021-01-02 22:21:11 -05:00

18 lines
263 B
Go

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
}