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

25 lines
393 B
Go

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