···11-import { getConfig } from '../../../utils/config';
22-import { getClientPlugin } from '../../@hey-api/client-core/utils';
33-44-// TODO: this function could be moved so other plugins can reuse it
55-export const getClientBaseUrlKey = () => {
66- const config = getConfig();
77- const client = getClientPlugin(config);
88- return client.name === '@hey-api/client-axios' ? 'baseURL' : 'baseUrl';
99-};