mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
'use strict';
|
|
|
|
const AbstractList = require('./abstract_list.js');
|
|
const Comment = require('./comment.js');
|
|
|
|
class CommentList extends AbstractList {
|
|
}
|
|
|
|
CommentList._itemClass = Comment;
|
|
CommentList._itemName = 'comment';
|
|
|
|
module.exports = CommentList;
|