mirror of
https://github.com/vale981/grapher
synced 2025-03-10 21:06:41 -04:00
6 lines
194 B
JavaScript
6 lines
194 B
JavaScript
import { Mongo } from 'meteor/mongo';
|
|
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
|
|
|
|
const PostsCollection = new Mongo.Collection('counts_posts');
|
|
|
|
export default PostsCollection;
|