mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
12 lines
252 B
JavaScript
12 lines
252 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;
|