opengist/opengist.go

13 lines
145 B
Go
Raw Normal View History

2023-03-14 16:22:52 +01:00
package main
import (
2024-01-23 20:24:01 +01:00
"github.com/thomiceli/opengist/internal/cli"
2023-03-14 16:22:52 +01:00
"os"
)
func main() {
2024-01-23 20:24:01 +01:00
if err := cli.App(); err != nil {
os.Exit(1)
}
2023-03-14 16:22:52 +01:00
}