feat: tokenizer

This commit is contained in:
2025-12-23 14:17:43 -05:00
parent 4845acea73
commit 61bb622dcd
8 changed files with 227 additions and 0 deletions

15
pkg/cli/exit.go Normal file
View File

@@ -0,0 +1,15 @@
package cli
import (
"fmt"
"os"
)
func HandleError(err error) {
if err == nil {
return
}
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}