char/main.go

14 lines
167 B
Go
Raw Normal View History

2022-11-01 14:26:54 +01:00
package main
import (
"log"
"git.front.kjuulh.io/kjuulh/char/cmd/char"
)
func main() {
if err := char.NewCharCmd().Execute(); err != nil {
log.Fatal(err)
}
}