29 lines
454 B
JavaScript
29 lines
454 B
JavaScript
|
|
import table from '/unify/table.js';
|
|
|
|
import title from './news.title.js';
|
|
|
|
import body from './news.body.js';
|
|
|
|
import price from './news.price.js';
|
|
|
|
import user from '/user/user.js';
|
|
|
|
import comment from './comment/comment.js';
|
|
|
|
import collection from '/unify/collection.js';
|
|
|
|
|
|
|
|
|
|
export default class news extends table {
|
|
|
|
title = new title();
|
|
|
|
body = new body();
|
|
|
|
price = new price();
|
|
|
|
comments = new collection( comment );
|
|
|
|
} |