10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
|
import * as types from "./actionTypes";
|
||
|
|
||
|
export function summonWizard() {
|
||
|
return { type: types.SUMMON_WIZARD };
|
||
|
}
|
||
|
|
||
|
export function cancelBot() {
|
||
|
return { type: types.CANCEL_BOT };
|
||
|
}
|