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 Nov 18, 2024
1 parent 70f801d commit a4a0bb5
Show file tree
Hide file tree
Showing 9 changed files with 519 additions and 7 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
12 changes: 11 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ require (
github.com/studio-b12/gowebdav v0.9.0
github.com/unidoc/unipdf/v3 v3.56.0
golang.org/x/crypto v0.21.0
golang.org/x/oauth2 v0.18.0
google.golang.org/api v0.126.0
gopkg.in/yaml.v3 v3.0.1
)

require (
cloud.google.com/go/compute v1.20.1 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/adrg/strutil v0.3.1 // indirect
github.com/adrg/sysfont v0.1.2 // indirect
github.com/adrg/xdg v0.4.0 // indirect
Expand All @@ -35,7 +39,11 @@ require (
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.19.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/s2a-go v0.1.4 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.11.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 @@ -54,13 +62,15 @@ require (
github.com/unidoc/timestamp v0.0.0-20200412005513-91597fd3793a // indirect
github.com/unidoc/unichart v0.3.0 // indirect
github.com/unidoc/unitype v0.4.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/arch v0.7.0 // indirect
golang.org/x/image v0.18.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
google.golang.org/grpc v1.55.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)
53 changes: 53 additions & 0 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit a4a0bb5

Please sign in to comment.