mirror of
https://gitea.massivebox.net/massivebox/ecodash.git
synced 2024-11-04 19:27:44 +01:00
e9125b783c
This is the first, most basic implementation of a SQLite database for caching. Future commits will make it much more optimized and able to efficiently store data for periods longer than 8 days.
20 lines
513 B
Modula-2
20 lines
513 B
Modula-2
module ecodash
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.37.1
|
|
github.com/gofiber/template v1.7.1
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
|
github.com/klauspost/compress v1.15.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.40.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
|
|
)
|