2024-10-26 23:34:11 +07:00

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> {}
}