mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-05-25 08:16:36 +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;
|