From 03bbf440c7d92c08982f255a1ac231323e55e334 Mon Sep 17 00:00:00 2001 From: Midou36O Date: Wed, 14 Sep 2022 15:55:17 +0100 Subject: [PATCH] Initial OAuth draft. --- go.mod | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/go.mod b/go.mod index 07e44b4..6e424a5 100644 --- a/go.mod +++ b/go.mod @@ -5,6 +5,7 @@ go 1.18 require ( github.com/fsnotify/fsnotify v1.5.4 // indirect github.com/goccy/go-json v0.9.10 // indirect + github.com/golang/protobuf v1.5.2 // indirect github.com/gorilla/feeds v1.1.1 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/kataras/hcaptcha v0.0.0-20200711031247-2927d4faf32f // indirect @@ -18,8 +19,12 @@ require ( github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.12.0 // indirect github.com/subosito/gotenv v1.3.0 // indirect + golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect + golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 //indirect golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect golang.org/x/text v0.3.7 // indirect + google.golang.org/appengine v1.6.7 // indirect + google.golang.org/protobuf v1.28.0 // indirect gopkg.in/ini.v1 v1.66.4 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect