mirror of
https://github.com/Discreetly/server.git
synced 2026-04-17 03:00:55 -04:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { createRoom } from '../src/data/db';
|
|
|
|
function main() {
|
|
createRoom('1 Second Room', 1000, 1, 10);
|
|
createRoom('10 Second Room', 10000, 2, 10);
|
|
createRoom('100 Second Room', 100000, 10, 10);
|
|
}
|
|
|
|
main();
|