export class APIService {
  constructor(private http: HttpClient) {}

  hello() {
    return this.http.get<any[]>(`/api/hello`);