phase1: go module skeleton with subcommand stubs

This commit is contained in:
Sergey Filkin
2026-04-18 11:36:39 +03:00
parent f36e9f003f
commit 6b8d588c43
12 changed files with 208 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build tools
package tools
import (
_ "github.com/a-h/templ"
_ "github.com/alecthomas/chroma/v2"
_ "github.com/go-chi/chi/v5"
_ "github.com/google/uuid"
_ "github.com/mozillazg/go-unidecode"
_ "github.com/yuin/goldmark"
_ "github.com/yuin/goldmark-emoji"
_ "github.com/yuin/goldmark-highlighting/v2"
)