import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class MessageMemoryDataSourceService { messages: {[roomId: string]: string[]} = {} constructor() {} }