Add gorm models
This commit is contained in:
parent
a31849434b
commit
6add647ec7
8 changed files with 266 additions and 9 deletions
13
go.mod
13
go.mod
|
|
@ -2,4 +2,15 @@ module github.com/TheLovinator1/FeedVault
|
|||
|
||||
go 1.21.6
|
||||
|
||||
require github.com/go-chi/chi/v5 v5.0.11
|
||||
require (
|
||||
github.com/go-chi/chi/v5 v5.0.11
|
||||
github.com/mmcdole/gofeed v1.2.1
|
||||
gorm.io/driver/sqlite v1.5.4
|
||||
gorm.io/gorm v1.25.6
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/jinzhu/inflection v1.0.0 // indirect
|
||||
github.com/jinzhu/now v1.1.5 // indirect
|
||||
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue