add chat domain service

This commit is contained in:
Peter Maquiran
2024-06-13 14:00:42 +01:00
parent ec19d725c4
commit f6dc118fe4
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ChatServiceService } from './chat-service.service';
describe('ChatServiceService', () => {
let service: ChatServiceService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatServiceService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ChatServiceService {
constructor() { }
}