import { ISkeletonProcess } from '../interfaces/skeleton-process.interface'; export class DefaultProcess implements ISkeletonProcess { protected result; async initialization(): Promise {} async before(): Promise {} async begin(): Promise {} async process(): Promise {} async end(): Promise {} async after(): Promise {} output() { return this.result; } }