cantidio/live_paper_node

View on GitHub
lib/image.js

Summary

Maintainability
A
0 mins
Test Coverage
/*jslint node: true */
/*jshint esnext: true */
'use strict';

class Image {
  const API_URL = 'https://storage.livepaperapi.com/objects/v1/files';
  constructor() {}
  upload() {}
}

module.exports = Image;