import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root', }) export class Categories { public static readonly BASE_URL = 'http://localhost:3000/common-cents/categories'; public async getCategories(): Promise { console.log('getCategories called'); return []; } } export interface Category { id: string; name: string; }