added basic plugin structure

This commit is contained in:
2022-11-01 14:26:54 +01:00
commit a693cbad37
18 changed files with 481 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"log"
"git.front.kjuulh.io/kjuulh/char/cmd/char"
)
func main() {
if err := char.NewCharCmd().Execute(); err != nil {
log.Fatal(err)
}
}