mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-10 06:48:04 -05:00
17 lines
177 B
Go
17 lines
177 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/danielmiessler/fabric/cli"
|
|
)
|
|
|
|
func main() {
|
|
_, err := cli.Cli()
|
|
if err != nil {
|
|
fmt.Printf("%s\n", err)
|
|
os.Exit(-1)
|
|
}
|
|
}
|