mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-09-16 21:00:11 +00:00
11 lines
116 B
JavaScript
11 lines
116 B
JavaScript
'use strict';
|
|
|
|
// Base class
|
|
class Post {
|
|
constructor(type) {
|
|
this.type = type;
|
|
}
|
|
}
|
|
|
|
module.exports = Post;
|