1234567891011121314151617181920212223242526272829 |
- /*
- var AWS = require("aws-sdk")
- function connectAws(bucket, region, identity) {
- AWS.config.update({
- region: region,
- credentials: new AWS.CognitoIdentityCredentials({
- IdentityPoolId: identity
- })
- });
- var s3 = new AWS.S3({
- apiVersion: '2006-03-01',
- params: {
- Bucket: bucket
- }
- });
- return s3;
- }
- */
- module.exports = function() {
- }
|