first set of files

This commit is contained in:
2025-08-24 08:04:35 -07:00
commit c550f7d0df
9 changed files with 1371 additions and 0 deletions

11
go.mod Normal file
View File

@@ -0,0 +1,11 @@
// go.mod - Keep dependencies minimal
module garminsync
go 1.21
require (
github.com/mattn/go-sqlite3 v1.14.17
github.com/robfig/cron/v3 v3.0.1
github.com/gorilla/mux v1.8.0 // For HTTP routing
golang.org/x/net v0.12.0 // For HTTP client
)