Some checks failed
build / Build (push) Failing after 6s
test / Run tests (push) Failing after 2s
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import { ScriptRunResouce } from "@App/app/repo/scripts";
|
|
import { Message } from "@Packages/message/server";
|
|
|
|
export class InjectRuntime {
|
|
constructor(
|
|
private msg: Message,
|
|
private scripts: ScriptRunResouce[]
|
|
) {}
|
|
|
|
start(){}
|
|
}
|