import Log from "../Log"; export default class Starter { public static run(T): void { try { new T().main(); } catch (error) { Log.error(error); Log.error('[Starter] trace: ', JSON.stringify({ error })); } } }