sync/src/channel-storage/channelstore.js
2015-09-26 14:21:42 -07:00

12 lines
302 B
JavaScript

import { FileStore } from './filestore';
import { DatabaseStore } from './dbstore';
const CHANNEL_STORE = new FileStore();
export function load(channelName) {
return CHANNEL_STORE.load(channelName);
}
export function save(channelName, data) {
return CHANNEL_STORE.save(channelName, data);
}