orbitdb/src/post/BasePost.js
2016-03-12 10:55:49 +01:00

11 lines
116 B
JavaScript

'use strict';
// Base class
class Post {
constructor(type) {
this.type = type;
}
}
module.exports = Post;