create shared service

This commit is contained in:
tykayn 2025-09-22 09:57:46 +02:00
parent 3043a74fa7
commit 42a552c8ec
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { SharedService } from './shared-service';
describe('SharedService', () => {
let service: SharedService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SharedService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View file

@ -0,0 +1,8 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class SharedService {
}