Files
kami-parse-server/src/cache.js
Florent Vilmart d83a0b6808 Use Prettier JS (#5017)
* Adds prettier

* Run lint before tests
2018-09-01 13:58:06 -04:00

5 lines
145 B
JavaScript

import { InMemoryCache } from './Adapters/Cache/InMemoryCache';
export var AppCache = new InMemoryCache({ ttl: NaN });
export default AppCache;