funky-framadate-front/src/app/services/poll.service.ts

12 lines
255 B
TypeScript

import { Injectable } from '@angular/core';
import { environment } from '../../environments/environment';
@Injectable({
providedIn: 'root',
})
export class PollService {
private baseHref: string = environment.baseApiHref;
constructor() {}
}