Initial commit for gisaf/fastapi

This commit is contained in:
phil 2024-02-17 12:35:03 +05:30
commit adce44722f
1361 changed files with 42521 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* tslint:disable:no-unused-variable */
import { TestBed, inject, waitForAsync } from '@angular/core/testing';
import { BootstrapService } from './bootstrap.service';
describe('BootstrapService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [BootstrapService]
});
});
it('should ...', inject([BootstrapService], (service: BootstrapService) => {
expect(service).toBeTruthy();
}));
});