forked from angelodlfrtr/go-invoice-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
22 lines (19 loc) · 707 Bytes
/
go.mod
File metadata and controls
22 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module github.com/angelodlfrtr/go-invoice-generator
go 1.17
require (
github.com/creasty/defaults v1.6.0
github.com/go-pdf/fpdf v0.6.0
github.com/go-playground/validator/v10 v10.11.0
github.com/leekchan/accounting v0.3.1
github.com/shopspring/decimal v1.3.1
)
require (
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
golang.org/x/text v0.3.7 // indirect
)