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