mirror of
https://github.com/thomiceli/opengist
synced 2024-11-12 07:05:50 +01:00
13 lines
145 B
Go
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)
|
|
}
|
|
}
|