2024-11-04 03:49:11 +01:00
|
|
|
import { Component, OnInit } from '@angular/core'
|
2024-10-19 11:53:15 +02:00
|
|
|
|
|
|
|
import { ConfigService } from '../config.service'
|
2024-11-04 03:49:11 +01:00
|
|
|
// TODO: get the dynamic version from the git tags
|
|
|
|
//import packageJson from '../../../package.json'
|
2024-10-19 11:53:15 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-about',
|
|
|
|
templateUrl: './about.component.html',
|
|
|
|
styleUrls: ['./about.component.scss']
|
|
|
|
})
|
|
|
|
export class AboutComponent implements OnInit {
|
|
|
|
constructor(
|
|
|
|
public configService: ConfigService,
|
|
|
|
) { }
|
|
|
|
|
2024-11-04 03:49:11 +01:00
|
|
|
//public version: string = packageJson.version
|
|
|
|
|
2024-10-19 11:53:15 +02:00
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
}
|