export interface IService {
    getData(): Promise<any>;
    processData(data: any): void;
}
