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

12 lines
255 B
TypeScript
Raw Normal View History

import { Injectable } from '@angular/core';
import { environment } from '../../environments/environment';
2019-12-03 17:20:57 +01:00
@Injectable({
providedIn: 'root',
2019-12-03 17:20:57 +01:00
})
export class PollService {
private baseHref: string = environment.baseApiHref;
constructor() {}
2019-12-03 17:20:57 +01:00
}