Files
litlyx/scripts/dashboard/shared.ts
2025-01-29 16:03:01 +01:00

20 lines
480 B
TypeScript

import { SharedHelper } from "../helpers/shared-helper";
import path from "node:path";
const helper = new SharedHelper(path.join(__dirname, '../../dashboard/shared'))
helper.clear();
helper.create('services');
helper.copy('services/DateService.ts');
helper.copy('services/EmailService.ts');
helper.create('data');
helper.copy('data/PREMIUM.ts');
helper.copy('data/ADMINS.ts');
helper.create('data/broker');
helper.copy('data/broker/Limits.ts');
helper.copyFolder('schema');