import { ProjectWorker } from './project/ProjectWorker'; export class MessageApplication{ static startWorker() { new ProjectWorker().start(); } }