1
0
Fork 0
mirror of synced 2024-09-18 18:28:33 +12:00
budibase/packages/client/src/utils/api.js

7 lines
136 B
JavaScript
Raw Normal View History

import { API } from "api"
export const getAPIKey = async () => {
const { apiKey } = await API.fetchDeveloperInfo()
return apiKey
}