mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-20 12:49:43 +08:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
export const buildProviderQuery = (collectionName: string): string => {
|
|
const query = new URLSearchParams()
|
|
query.set('provider', collectionName)
|
|
return query.toString()
|
|
}
|