feat: Phase 1 — config, auth, OAuth2 PKCE, CLI scaffold, token store

This commit is contained in:
GoCalGoo
2026-04-01 21:25:49 +02:00
parent 514372fa6b
commit 10db895ada
14 changed files with 977 additions and 29 deletions

13
go.mod Normal file
View File

@@ -0,0 +1,13 @@
module git.warky.dev/wdevs/gocalgoo
go 1.22
require (
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
go.uber.org/zap v1.27.0
golang.org/x/oauth2 v0.18.0
google.golang.org/api v0.170.0
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.21.0
)