Created
March 31, 2017 05:57
-
-
Save Xuanwo/47f6eeabd8e40bb544ead6ee7a6ec5ea to your computer and use it in GitHub Desktop.
qingstor-sdk on meteor demo
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
import { QingStor, Config } from 'qingstor-sdk'; | |
import './main.html'; | |
let config = new Config(); | |
let qingstor = new QingStor(config); | |
let bucket = qingstor.Bucket("test", "pek3a"); | |
console.log(qingstor); | |
console.log(bucket); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment