mirror of
https://github.com/skidoodle/ncore-stats.git
synced 2026-04-28 15:57:37 +02:00
5084c70295
- 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.
17 lines
275 B
Modula-2
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
|
|
)
|