mirror of
https://github.com/vale981/grapher
synced 2025-03-10 12:56:41 -04:00
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
![]() |
import { Mongo } from 'meteor/mongo';
|
||
|
import { COUNTS_COLLECTION_CLIENT } from './constants';
|
||
|
|
||
|
/**
|
||
|
* Internal collection used to store counts on the client.
|
||
|
*/
|
||
|
export default new Mongo.Collection(COUNTS_COLLECTION_CLIENT);
|