1
0
Fork 0
mirror of https://github.com/vale981/grapher synced 2025-03-12 22:06:37 -04:00
grapher/lib/query/testing/bootstrap/index.js

16 lines
341 B
JavaScript
Raw Normal View History

import './comments/links';
import './posts/links';
import './authors/links';
import './tags/links';
import './groups/links';
import Posts from './posts/collection';
import Groups from './groups/collection';
import Authors from './authors/collection';
if (Meteor.isServer) {
Posts.expose();
Groups.expose();
Authors.expose();
}