2020-07-14 15:58:33 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2020-08-07 15:22:14 +02:00
|
|
|
import {ApiService} from '../services/api.service';
|
2020-07-14 15:58:33 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-documentation',
|
|
|
|
templateUrl: './documentation.component.html',
|
|
|
|
styleUrls: ['./documentation.component.scss']
|
|
|
|
})
|
|
|
|
export class DocumentationComponent implements OnInit {
|
|
|
|
|
2020-08-07 15:22:14 +02:00
|
|
|
constructor(
|
|
|
|
public api: ApiService
|
|
|
|
) { }
|
2020-07-14 15:58:33 +02:00
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|