change db from sqlite3 to postgresql

This commit is contained in:
2025-01-07 09:32:57 +01:00
parent f719c73b46
commit 9302e982c6
20 changed files with 309 additions and 284 deletions

View File

@@ -5,7 +5,7 @@ import "time"
// A simple cache for requests.
type Response struct {
Url string
Content string
Processed bool
Content []byte
Processed bool
FetchDate time.Time
}