More refactoring + reusing the server's store on the client

This commit is contained in:
Art Lowel
2017-03-02 13:36:40 +01:00
parent b0f25c4dae
commit 7745938027
27 changed files with 348 additions and 371 deletions

4
src/app/core/cache/cache-entry.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
export interface CacheEntry {
timeAdded: number;
msToLive: number;
}