mirror of
https://github.com/chenasraf/wand.git
synced 2026-05-18 01:38:59 +00:00
16 lines
175 B
Go
16 lines
175 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/chenasraf/wand/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|