diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-12 20:34:02 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-12 20:34:02 +0100 |
commit | 85d77655a515c120e5c0ba3c48c6be4eda1ac8f6 (patch) | |
tree | b867aca6afc90b6b24859061e67ac63d87f7f860 /go.mod | |
parent | 89ee67970d350e7381554cf38e464eda80b439ec (diff) |
First test and first appearance of returns code
Test a function that gets all sheets from a datamap struct.
A new function to handle a datamap and a return together in one POST
request.
Diffstat (limited to '')
-rw-r--r-- | go.mod | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -3,6 +3,20 @@ module git.yulqen.org/go/dbasik-go go 1.22.1 require ( - github.com/joho/godotenv v1.5.1 // indirect - github.com/lib/pq v1.10.9 // indirect + github.com/joho/godotenv v1.5.1 + github.com/lib/pq v1.10.9 + github.com/tealeg/xlsx/v3 v3.3.6 +) + +require ( + github.com/frankban/quicktest v1.14.6 // indirect + github.com/google/btree v1.0.0 // indirect + github.com/google/go-cmp v0.5.9 // indirect + github.com/kr/pretty v0.3.1 // indirect + github.com/kr/text v0.2.0 // indirect + github.com/peterbourgon/diskv/v3 v3.0.1 // indirect + github.com/rogpeppe/fastuuid v1.2.0 // indirect + github.com/rogpeppe/go-internal v1.9.0 // indirect + github.com/shabbyrobe/xmlwriter v0.0.0-20200208144257-9fca06d00ffa // indirect + golang.org/x/text v0.3.8 // indirect ) |