Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Basic Implement of OneDrive Storager #17

Merged
merged 8 commits into from
Sep 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
SHELL := /bin/bash

-include Makefile.env

.PHONY: all check format lint build test generate tidy

help:
Expand Down
2 changes: 2 additions & 0 deletions Makefile.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export STORAGE_ONEDRIVE_INTEGRATION_TEST=on
export STORAGE_ONEDRIVE_CREDENTIAL=file:<abs_path_of_credential>
156 changes: 135 additions & 21 deletions generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@ module github.com/beyondstorage/go-service-onedrive

go 1.15

require github.com/beyondstorage/go-storage/v4 v4.6.0
require (
github.com/beyondstorage/go-integration-test/v4 v4.4.0
github.com/beyondstorage/go-storage/v4 v4.7.0
github.com/goh-chunlin/go-onedrive v1.1.1
github.com/google/uuid v1.3.0
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
)
Loading