mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 06:46:38 +00:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
const useServerConfig = () => {
|
|
const getConfig = async () => {}
|
|
|
|
const checkMaintenance = async () => {}
|
|
|
|
const dismissMaintenance = () => {}
|
|
|
|
return {
|
|
getConfig,
|
|
checkMaintenance,
|
|
dismissMaintenance,
|
|
}
|
|
}
|
|
|
|
export default useServerConfig
|