mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import { alt } from '../alt';
|
||
|
|
||
|
class ErrorQueueActions {
|
||
|
constructor() {
|
||
|
this.generateActions(
|
||
|
'shiftErrorQueue'
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createActions(ErrorQueueActions);
|