mirror of
https://github.com/langgenius/dify.git
synced 2025-07-29 12:30:22 +00:00
14 lines
320 B
TypeScript
14 lines
320 B
TypeScript
![]() |
import { useInspectVarsCrudCommon } from '../../workflow/hooks/use-inspect-vars-crud-common'
|
||
|
import { useConfigsMap } from './use-configs-map'
|
||
|
|
||
|
export const useInspectVarsCrud = () => {
|
||
|
const configsMap = useConfigsMap()
|
||
|
const apis = useInspectVarsCrudCommon({
|
||
|
...configsMap,
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
...apis,
|
||
|
}
|
||
|
}
|