mirror of
https://github.com/Luzifer/ots.git
synced 2025-03-07 23:16:13 -05:00
12 lines
107 B
Go
12 lines
107 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|