Updated ruff and mypy, accepted all changes Central exception management and injected the Session. This removed a lot of duplicated boilerplate code. Added health check Updated to Angular 21
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
|
|
import { NavBarComponent } from './core/nav-bar/nav-bar.component';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.sass'],
|
|
imports: [NavBarComponent, RouterOutlet],
|
|
})
|
|
export class AppComponent {
|
|
title = 'app';
|
|
}
|