mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 12:32:40 +00:00
12 lines
145 B
Go
12 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)
|
|
}
|
|
}
|