Ajout des sources

This commit is contained in:
Julien Gautier
2023-09-12 21:46:56 +02:00
parent fa2288b8ed
commit 747948a422
235 changed files with 45064 additions and 0 deletions
@@ -0,0 +1,17 @@
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { ProfileComponent } from './profile.component';
import { ProfileResolver } from './profile-resolver.service';
import { ProfileRoutingModule } from './profile-routing.module';
@NgModule({
imports: [
ProfileRoutingModule,
ProfileComponent
],
providers: [
ProfileResolver
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class ProfileModule { }