mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
|
|
import { SharedHelper } from "../helpers/shared-helper";
|
|
import path from "node:path";
|
|
|
|
const helper = new SharedHelper(path.join(__dirname, '../../producer/src/shared'))
|
|
|
|
helper.clear();
|
|
|
|
helper.create('utils');
|
|
helper.copy('utils/requireEnv.ts');
|
|
|
|
helper.create('services');
|
|
helper.copy('services/RedisStreamService.ts');
|