Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

upload.node.js 140B

1234567
  1. module.exports = function(ctx) {
  2. ctx.getPostData(function(err, data, files) {
  3. if (err) return console.log(err);
  4. ctx.succeed();
  5. });
  6. }