SQLite Initial Implementation
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

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.
This commit is contained in:
MassiveBox 2022-12-07 17:54:46 +01:00
parent 6dc8fa3750
commit e9125b783c
6 changed files with 56 additions and 33 deletions

1
go.mod
View file

@ -5,6 +5,7 @@ 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
)