1
0
mirror of https://github.com/thomiceli/opengist.git synced 2025-02-06 09:45:30 +00:00
opengist/opengist.go
2024-04-03 01:56:55 +02:00

13 lines
145 B
Go

package main
import (
"github.com/thomiceli/opengist/internal/cli"
"os"
)
func main() {
if err := cli.App(); err != nil {
os.Exit(1)
}
}