import { action } from './action';
import { DEFAULT_TARGET } from '../constant';
export const openDoor = (config) => {
const { targetUrl, info } = config;
return action({
actionType: 'openDoor',
targetUrl: targetUrl || DEFAULT_TARGET,
data: info
});
};