-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#19| added pdf report generation capability draft
- Loading branch information
1 parent
fab5be2
commit e7959a5
Showing
8 changed files
with
415 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,46 @@ | ||
module bean_counter | ||
|
||
go 1.19 | ||
go 1.21.1 | ||
|
||
toolchain go1.22.0 | ||
|
||
require ( | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/oauth2 v0.5.0 | ||
google.golang.org/api v0.111.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.18.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/boombuler/barcode v1.0.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/f-amaral/go-async v0.3.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.7.0 // indirect | ||
github.com/hhrutter/lzw v1.0.0 // indirect | ||
github.com/hhrutter/tiff v1.0.1 // indirect | ||
github.com/johnfercher/go-tree v1.0.5 // indirect | ||
github.com/johnfercher/maroto/v2 v2.0.0-beta.16 // indirect | ||
github.com/jung-kurt/gofpdf v1.16.2 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/pdfcpu/pdfcpu v0.6.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/image v0.15.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20230223222841-637eb2293923 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.