mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
// Our API for demos only
|
|
export const fakeDataBase = {
|
|
get() {
|
|
const res = { data: 'This fake data came from the db on the server.' };
|
|
return Promise.resolve(res);
|
|
}
|
|
};
|