forked from Qortal/qortal-ui
12 lines
442 B
JavaScript
12 lines
442 B
JavaScript
|
import { Epml, EpmlReadyPlugin, RequestPlugin, ContentWindow as EpmlContentWindowPlugin, EpmlStreamPlugin, EpmlProxyPlugin, EpmlStream } from 'epml'
|
||
|
|
||
|
// Epml.registerPlugin(contentWindowsPlugin)
|
||
|
Epml.registerPlugin(RequestPlugin)
|
||
|
Epml.registerPlugin(EpmlReadyPlugin)
|
||
|
Epml.registerPlugin(EpmlContentWindowPlugin)
|
||
|
Epml.registerPlugin(EpmlStreamPlugin)
|
||
|
Epml.registerPlugin(EpmlProxyPlugin)
|
||
|
Epml.allowProxying = true
|
||
|
|
||
|
export { Epml, EpmlStream }
|