mirror of
https://github.com/langgenius/dify.git
synced 2025-07-16 13:50:18 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import { useHooksStore } from '@/app/components/workflow/hooks-store'
|
|
|
|
export const useSetWorkflowVarsWithValue = () => {
|
|
const fetchInspectVars = useHooksStore(s => s.fetchInspectVars)
|
|
|
|
return {
|
|
fetchInspectVars,
|
|
}
|
|
}
|