mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-07-03 19:12:30 +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;
|