Forked from an inaccessible project.
-
jvanboxtel@wisc.edu authoredjvanboxtel@wisc.edu authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
data.service.ts 481 B
import { identifierModuleUrl } from '@angular/compiler';
import { Injectable } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { Router } from '@angular/router';
import { Observable } from 'rxjs';
import { ConfigService } from './config.service';
@Injectable()
export class DataService {
private api: string;
constructor(private http: HttpClientModule, private configService: ConfigService) {
this.api = this.configService.apiUrl;
}
}