- Add missing bcc argument to NewEmail call in pkg/email/fetch.go - Upgrade github.com/a-h/templ from v0.3.833 to v0.3.1020 to match generator - Add player management routes (add/delete/edit) and playershandler - Update templates and loaddata with pending changes Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
506 B
Modula-2
22 lines
506 B
Modula-2
module github.com/hculpan/areweplaying
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/a-h/templ v0.3.1020
|
|
github.com/go-chi/chi/v5 v5.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/emersion/go-imap v1.2.1
|
|
github.com/golang-jwt/jwt/v4 v4.5.1
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/spf13/cobra v1.9.1
|
|
)
|
|
|
|
require (
|
|
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
)
|