import { getParams } from './params'
// 获取宿主传回的授权信息
export const getAuthInfo = () => {
  const { authCtxCode, authorization, projectCode } = getParams()
  return { authCtxCode, authorization, projectCode }
}
