Upload files to ''

This commit is contained in:
nikkel 2020-03-20 02:37:39 +07:00
parent d24ded4931
commit 91f10d9c2d
2 changed files with 24 additions and 0 deletions

9
index.js Normal file
View File

@ -0,0 +1,9 @@
var Client = require('./Client');
var SendMessage = require('./SendMessage');
var SendRawMessage = require('./SendRawMessage');
module.exports = {
Client: Client,
SendMessage: SendMessage,
SendRawMessage: SendRawMessage
};

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "@postman/postman",
"version": "1.0.0",
"description": "Node library for open source mail delivery platform, Postman",
"author": "Nikkel <nikkel@prmail.vn>",
"license": "MIT",
"keywords": [
"postman",
"mail"
],
"dependencies": {
"concat-stream": "^1.5.2",
"promise": "^7.1.1"
}
}