mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class MessageMemoryDataSourceService {
|
|
|
|
messages: {[roomId: string]: string[]} = {}
|
|
|
|
constructor() {}
|
|
}
|