Files
ncore-stats/go.mod
T
x 5084c70295 Refactor database handling and API endpoints
- Removed fsnotify dependency and related file watching logic.
- Introduced SQLite database for storing user profiles and history.
- Created new API endpoints for fetching latest profiles and user history.
- Migrated existing JSON data to the new database structure.
- Simplified HTML and JavaScript for fetching and displaying profile data.
- Improved error handling and logging throughout the application.
2025-06-12 22:42:22 +02:00

17 lines
275 B
Modula-2

module ncore-stats
go 1.23
toolchain go1.23.2
require (
github.com/PuerkitoBio/goquery v1.10.1
github.com/joho/godotenv v1.5.1
github.com/mattn/go-sqlite3 v1.14.28
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
golang.org/x/net v0.33.0 // indirect
)