Move all message types to a standardised location

This commit is contained in:
Kristóf Tóth
2018-05-31 11:31:22 +02:00
parent 2bf68b1500
commit e510fb58f6
18 changed files with 30 additions and 30 deletions

View File

@ -3,10 +3,10 @@
import { Injectable } from '@angular/core';
import { WebSocketService } from './websocket.service';
import { ProcessLogCommand } from './processlog-command';
import { ProcessLogCommand } from '../message.types/process.log.command';
import { config } from '../config';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { LogMessage } from './log.message';
import { LogMessage } from '../message.types/log.message';
@Injectable()
export class ProcessLogService {