summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-25 15:29:13 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-25 15:29:13 +0530
commit2326633e76aaf9c5e733e08045c0a26b81f9f4e6 (patch)
tree270fbbb8a71d0dd0c7281fb6becc0d67f1368590 /go.mod
parent82d9a0f82bc776bf5b026f64c5bf63b89719906a (diff)
Added endpoints to add and delete data
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod39
1 files changed, 39 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..e05d315
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,39 @@
+module github.com/MikunoNaka/OpenBills-server
+
+go 1.19
+
+require (
+ github.com/MikunoNaka/OpenBills-lib v0.0.1
+ github.com/gin-gonic/gin v1.8.1
+)
+
+require (
+ github.com/gin-contrib/sse v0.1.0 // indirect
+ github.com/go-playground/locales v0.14.0 // indirect
+ github.com/go-playground/universal-translator v0.18.0 // indirect
+ github.com/go-playground/validator/v10 v10.10.0 // indirect
+ github.com/goccy/go-json v0.9.7 // indirect
+ github.com/golang/snappy v0.0.1 // indirect
+ github.com/json-iterator/go v1.1.12 // indirect
+ github.com/klauspost/compress v1.13.6 // indirect
+ github.com/leodido/go-urn v1.2.1 // indirect
+ github.com/mattn/go-isatty v0.0.14 // indirect
+ github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
+ github.com/modern-go/reflect2 v1.0.2 // indirect
+ github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
+ github.com/pelletier/go-toml/v2 v2.0.1 // indirect
+ github.com/pkg/errors v0.9.1 // indirect
+ github.com/ugorji/go/codec v1.2.7 // indirect
+ github.com/xdg-go/pbkdf2 v1.0.0 // indirect
+ github.com/xdg-go/scram v1.1.1 // indirect
+ github.com/xdg-go/stringprep v1.0.3 // indirect
+ github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
+ go.mongodb.org/mongo-driver v1.10.2 // indirect
+ golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
+ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
+ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
+ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
+ golang.org/x/text v0.3.7 // indirect
+ google.golang.org/protobuf v1.28.0 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+)