Skip to content

Commit

Permalink
Add Google Drive as new integration
Browse files Browse the repository at this point in the history
  • Loading branch information
nemunaire committed Jun 1, 2023
1 parent 418ab2a commit ece6064
Show file tree
Hide file tree
Showing 10 changed files with 1,078 additions and 8 deletions.
2 changes: 2 additions & 0 deletions cmd/rmfakecloud/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/ddvk/rmfakecloud/internal/app"
"github.com/ddvk/rmfakecloud/internal/cli"
"github.com/ddvk/rmfakecloud/internal/config"
"github.com/ddvk/rmfakecloud/internal/integrations"
"github.com/gin-gonic/gin"
"github.com/rifflock/lfshook"
"github.com/sirupsen/logrus"
Expand Down Expand Up @@ -76,6 +77,7 @@ func main() {
}

cfg.Verify()
integrations.ConfigGDrive(cfg)

logrus.Info("Version: ", version)

Expand Down
11 changes: 10 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ require (
github.com/studio-b12/gowebdav v0.0.0-20230203202212-3282f94193f2
github.com/unidoc/unipdf/v3 v3.44.0
golang.org/x/crypto v0.7.0
golang.org/x/oauth2 v0.6.0
google.golang.org/api v0.103.0
gopkg.in/yaml.v3 v3.0.1
)

require (
cloud.google.com/go/compute v1.14.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/adrg/strutil v0.3.0 // indirect
github.com/adrg/sysfont v0.1.2 // indirect
github.com/adrg/xdg v0.4.0 // indirect
Expand All @@ -31,7 +35,10 @@ require (
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.11.2 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
github.com/gorilla/i18n v0.0.0-20150820051429-8b358169da46 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/jung-kurt/gofpdf v1.16.2 // indirect
Expand All @@ -51,13 +58,15 @@ require (
github.com/unidoc/timestamp v0.0.0-20200412005513-91597fd3793a // indirect
github.com/unidoc/unichart v0.1.0 // indirect
github.com/unidoc/unitype v0.4.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/image v0.6.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.6.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd // indirect
google.golang.org/grpc v1.50.1 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
651 changes: 650 additions & 1 deletion go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit ece6064

Please sign in to comment.