blocky/main.go

13 lines
109 B
Go

package main
import (
"os"
"github.com/0xERR0R/blocky/cmd"
)
func main() {
cmd.Execute()
os.Exit(0)
}