2022-08-12 08:59:03 +00:00
|
|
|
module db_service
|
|
|
|
|
|
|
|
|
|
go 1.19
|
|
|
|
|
|
|
|
|
|
require (
|
2022-08-26 15:02:58 +00:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2022-08-12 08:59:03 +00:00
|
|
|
github.com/gosimple/slug v1.12.0
|
|
|
|
|
github.com/joho/godotenv v1.4.0
|
2022-09-07 12:55:55 +00:00
|
|
|
github.com/leesper/couchdb-golang v1.2.1
|
2022-08-12 08:59:03 +00:00
|
|
|
gorm.io/driver/mysql v1.3.5
|
|
|
|
|
gorm.io/gorm v1.23.8
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
|
|
|
github.com/gosimple/unidecode v1.0.1 // indirect
|
|
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
|
|
|
)
|