diff --git a/lib/collections.js b/lib/collections.js new file mode 100644 index 0000000..531e6c2 --- /dev/null +++ b/lib/collections.js @@ -0,0 +1,4 @@ +import { Mongo } from 'meteor/mongo'; + +export const Chats = new Mongo.Collection('chats'); +export const Messages = new Mongo.Collection('messages'); \ No newline at end of file