This commit is contained in:
Lurkars
2021-03-13 09:47:25 +01:00
parent 4cd6a0028b
commit 52faaba99e
19 changed files with 109 additions and 363 deletions
@@ -6,13 +6,13 @@ import { environment } from '../../environments/environment';
@Injectable({
providedIn: 'root',
})
export class AppService {
export class ServiceService {
constructor(private http: HttpClient) {
}
apps() {
return this.http.get(environment.apiUrl + "/apps");
services() {
return this.http.get(environment.apiUrl + "/services");
}
}