Files
doneit-web/src/app/module/chat/data/data-source/message/message-memory-data-source.service.ts
T

12 lines
198 B
TypeScript
Raw Normal View History

2024-08-13 10:52:35 +01:00
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class MessageMemoryDataSourceService {
messages: {[roomId: string]: string[]} = {}
constructor() {}
}