import { App, Context } from '../../../types' export default abstract class FileBase { protected app: App protected ctx: Context constructor (app: App, ctx: Context) { this.app = app this.ctx = ctx } abstract async execute (): Promise }