blob: e3b616a1a5ced063b59465b2e32a6c73ef66b9ab (
plain)
1
2
3
4
5
6
7
8
9
|
import * as riot from 'riot';
import Connection from '../scripts/stream';
export default me => {
const stream = me ? new Connection(me) : null;
riot.mixin('stream', {
stream: stream
});
};
|