chore: establish chub go foundation

This commit is contained in:
QiuSW
2026-07-22 14:51:11 +08:00
commit f8aaaeda21
28 changed files with 886 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package main
import (
"context"
"fmt"
"os"
"chub/internal/platform/logging"
)
const version = "0.1.0-dev"
func main() {
ctx := context.Background()
logger := logging.New(os.Stderr)
logger.InfoContext(ctx, "chub starting", "version", version)
fmt.Printf("Chub %s\n", version)
}