mirror of
https://github.com/langgenius/dify.git
synced 2026-03-05 23:57:06 +08:00
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
import { type } from '@orpc/contract'
|
|
import { base } from '../base'
|
|
|
|
export const appDeleteContract = base
|
|
.route({
|
|
path: '/apps/{appId}',
|
|
method: 'DELETE',
|
|
})
|
|
.input(type<{
|
|
params: {
|
|
appId: string
|
|
}
|
|
}>())
|
|
.output(type<unknown>())
|