Update goext to v0.0.291

This commit is contained in:
2023-10-26 13:14:11 +02:00
parent 51f5f1005a
commit 9f3e183d72
11 changed files with 835 additions and 713 deletions

View File

@@ -0,0 +1,20 @@
package main
import (
"gogs.mikescher.com/BlackForestBytes/goext/bfcodegen"
"os"
)
func main() {
dest := os.Args[2]
wd, err := os.Getwd()
if err != nil {
panic(err)
}
err = bfcodegen.GenerateCharsetIDSpecs(wd, dest)
if err != nil {
panic(err)
}
}