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/main.go
2021-01-03 10:27:22 -05:00

24 lines
335 B
Go

package main
import (
"os"
"log"
"reichard.io/imagini/cmd"
"github.com/urfave/cli"
)
func main() {
app := cli.NewApp()
app.Name = "Imagini"
app.Usage = "A self hosted photo library."
app.Commands = []cli.Command{
cmd.CmdServe,
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}