mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-05 16:18:04 +08:00
13 lines
148 B
Go
13 lines
148 B
Go
package cmd
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
// Execute executes the commands.
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|