11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import { CodeBuilder } from '@/application/Context/State/Code/Generation/CodeBuilder';
|
|
|
|
export class BatchBuilder extends CodeBuilder {
|
|
protected getCommentDelimiter(): string {
|
|
return '::';
|
|
}
|
|
protected writeStandardOut(text: string): string {
|
|
return `echo ${text}`;
|
|
}
|
|
}
|