Initial Commit

This commit is contained in:
2021-01-02 22:21:11 -05:00
commit 4389caddcb
6 changed files with 68 additions and 0 deletions

17
cmd/cmd.go Normal file
View File

@@ -0,0 +1,17 @@
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
}