Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
golang-base-project/go.mod

25 lines
814 B
Modula-2
Raw Normal View History

2021-12-12 14:56:13 +01:00
module github.com/uberswe/golang-base-project
go 1.16
require (
2022-01-29 10:21:05 +01:00
github.com/BurntSushi/toml v0.3.1
2021-12-12 14:56:13 +01:00
github.com/gin-contrib/sessions v0.0.4
github.com/gin-gonic/gin v1.7.7
github.com/go-playground/validator/v10 v10.4.1
github.com/gorilla/securecookie v1.1.1
github.com/kr/text v0.2.0 // indirect
2022-01-29 10:21:05 +01:00
github.com/nicksnyder/go-i18n/v2 v2.1.2
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
2021-12-12 14:56:13 +01:00
github.com/oklog/ulid/v2 v2.0.2
github.com/ulule/limiter/v3 v3.9.0
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/text v0.3.8
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
2021-12-12 14:56:13 +01:00
gorm.io/driver/mysql v1.2.1
gorm.io/driver/postgres v1.2.3
gorm.io/driver/sqlite v1.2.6
gorm.io/gorm v1.22.4
)