mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2025-05-04 20:39:53 +00:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
import { ISkeletonProcess } from '../interfaces/skeleton-process.interface';
|
|
|
|
export class DefaultProcess implements ISkeletonProcess {
|
|
protected result;
|
|
|
|
async initialization(): Promise<any> {}
|
|
async before(): Promise<any> {}
|
|
async begin(): Promise<any> {}
|
|
async process(): Promise<any> {}
|
|
async end(): Promise<any> {}
|
|
async after(): Promise<any> {}
|
|
|
|
output() {
|
|
return this.result;
|
|
}
|
|
}
|