mirror of
https://github.com/gluster/glusterd2.git
synced 2026-02-05 12:45:38 +01:00
19 lines
276 B
Go
19 lines
276 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/gluster/glusterd2/glustercli/cmd"
|
|
)
|
|
|
|
func main() {
|
|
// Migrate old format Args into new Format. Modifies os.Args[]
|
|
argsMigrate()
|
|
|
|
if err := cmd.NewGlustercliCmd().Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|