mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 04:53:06 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { of as observableOf } from 'rxjs';
|
|
|
|
export class HALEndpointServiceStub {
|
|
|
|
constructor(private url: string) {};
|
|
getEndpoint(path: string) {
|
|
return observableOf(this.url + '/' + path);
|
|
}
|
|
}
|