Skip to content

Instantly share code, notes, and snippets.

@astrotars
Created January 22, 2019 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astrotars/e4db5a7a3c198c8f2bb9bd18c387b80b to your computer and use it in GitHub Desktop.
Save astrotars/e4db5a7a3c198c8f2bb9bd18c387b80b to your computer and use it in GitHub Desktop.
import uuid from 'uuid/v4';
import multer from 'multer';
import Upload from '../controllers/upload';
import config from '../config';
module.exports = api => {
api.route('/upload').post(multer().single('image'), Upload.create);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment