aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorTeddy Wing2022-08-19 12:08:36 +0200
committerTeddy Wing2022-08-19 12:08:36 +0200
commit9d35763b636e5db894507349cfc2f5f201198a08 (patch)
tree05bbed80a17be234295115d4d052cdd5a47a23c8 /go.mod
parentfb08fe2ff9c0eab821a5d78fe7ee8fd7a37aeac8 (diff)
parentfaa6fc3dc104236900caa75eb22e9ed2e5ecad42 (diff)
downloadgdrive-9d35763b636e5db894507349cfc2f5f201198a08.tar.bz2
Merge branch 'pr/585' into tw
Add Go modules This greatly improves the experience for people wanting to build the project from source.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod11
1 files changed, 11 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..0acbbeb
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,11 @@
+module github.com/prasmussen/gdrive
+
+go 1.16
+
+require (
+ github.com/sabhiram/go-gitignore v0.0.0-20201211210132-54b8a0bf510f
+ github.com/soniakeys/graph v0.0.0
+ golang.org/x/net v0.0.0-20210614182718-04defd469f4e
+ golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
+ google.golang.org/api v0.50.0
+)