/**
 * Carries out the necessary functionality to initialize the application.
 */
export interface IBootstrapper {
    /**
     * Carries out the necessary initialization operations.
     */
    bootstrap(): Promise<void>;
    /**
     * Carries out the necessary operations
     */
    cleanup(): Promise<void>;
}
