mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
initial commit
This commit is contained in:
7
src/backend/db.ts
Normal file
7
src/backend/db.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
// Our API for demos only
|
||||
export const fakeDataBase = {
|
||||
get() {
|
||||
let res = { data: 'This fake data came from the db on the server.' };
|
||||
return Promise.resolve(res);
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user