Initial add backend stuff

This commit is contained in:
2026-07-08 15:45:16 -04:00
commit a7964f9410
89 changed files with 25924 additions and 0 deletions

18
cmd/bundle/main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
// Thin CLI wrapper around kjol/bundler. The bundler wires its own Go-native
// Solid JSX compiler (see bundler.Build), so this wrapper carries no build logic.
import (
"fmt"
"os"
"kjol/bundler"
)
func main() {
if err := bundler.Build(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}