summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/component-services/resource.service.ts
blob: 650f244d380e2e4941970e64346a2dc25e2c0c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Injectable } from '@angular/core';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/toPromise';
import { Http, Response, Headers, RequestOptions } from '@angular/http';

@Injectable()
export class ResourceServiceNg2 {

    protected baseUrl = "";

    constructor(private http: Http) {

    }




}