blocky/main.go

13 lines
109 B
Go
Raw Normal View History

2020-01-12 18:23:35 +01:00
package main
import (
"os"
2021-08-25 22:06:34 +02:00
"github.com/0xERR0R/blocky/cmd"
2020-01-12 18:23:35 +01:00
)
func main() {
2020-04-08 23:03:07 +02:00
cmd.Execute()
os.Exit(0)
2020-01-12 18:23:35 +01:00
}