project structure

This commit is contained in:
Fran Jurmanović
2021-05-02 20:35:00 +02:00
parent 9a272d47c4
commit 3a5138eb83
10 changed files with 292 additions and 0 deletions

19
go.mod Normal file
View File

@@ -0,0 +1,19 @@
module wallet-api
go 1.15
require (
github.com/gin-gonic/gin v1.7.1
github.com/go-pg/pg/v10 v10.9.1
github.com/go-playground/validator/v10 v10.5.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/ugorji/go v1.2.5 // indirect
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
golang.org/x/sys v0.0.0-20210426230700-d19ff857e887 // indirect
golang.org/x/text v0.3.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)