-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from gsuitedevs/grant_export_quickstarts
feat: Add main export for repo as module. Fixes #65.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Exports all quickstarts. | ||
*/ | ||
module.exports = { | ||
quickstart: { | ||
// Format {service}_{version}, like the Node client. | ||
// @see https://github.com/googleapis/google-api-nodejs-client/tree/master/src/apis | ||
admin_directory_v1: require('./adminSDK/directory'), | ||
admin_reports_v1: require('./adminSDK/reports'), | ||
reseller_v1: require('./adminSDK/reseller'), | ||
script_v1: require('./apps-script/quickstart'), | ||
calendar_v3: require('./calendar/quickstart'), | ||
classroom_v1: require('./classroom/quickstart'), | ||
docs_v1: require('./docs/quickstart'), | ||
drive_v3: require('./drive/quickstart'), | ||
appsactivity_v1: require('./drive/activity'), | ||
appsactivity_v2: require('./drive/activity-v2'), | ||
gmail_v1: require('./gmail/quickstart'), | ||
people_v1: require('./people/quickstart'), | ||
sheets_v4: require('./sheets/quickstart'), | ||
slides_v1: require('./slides/quickstart'), | ||
tasks_v1: require('./tasks/quickstart'), | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters