Add auth and utils

This commit is contained in:
2019-08-28 14:08:14 +08:00
parent 23a04f1bba
commit b630fb7ef8
8 changed files with 228 additions and 0 deletions

6
utils/index.js Normal file
View File

@@ -0,0 +1,6 @@
exports.yo = function() {
alert('Yo Coder!')
}
exports.hello = function() {
alert('Hello Coder!')
}

11
utils/package.json Normal file
View File

@@ -0,0 +1,11 @@
{
"name": "@ehason/utils",
"version": "1.0.0",
"description": "Utils for ehason develope",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "likeagle <likeagle@163.com>",
"license": "MIT"
}