This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-02 22:49:16 +00:00
|
|
|
package main
|
|
|
|
|
2023-04-20 16:46:49 +00:00
|
|
|
import "os"
|
2021-07-17 16:04:09 +00:00
|
|
|
|
2021-05-02 22:49:16 +00:00
|
|
|
func main() {
|
2023-04-20 16:46:49 +00:00
|
|
|
err := rootCmd.Execute()
|
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
2021-07-29 09:30:30 +00:00
|
|
|
}
|
|
|
|
}
|