First commit

This commit is contained in:
2025-12-25 11:16:59 +01:00
commit 0c5ca09a63
720 changed files with 329234 additions and 0 deletions

29
application/demo/news.js Normal file
View File

@@ -0,0 +1,29 @@
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 );
}