opengist/opengist.go

13 lines
145 B
Go
Raw Permalink Normal View History

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