mirror of https://github.com/langgenius/dify.git
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import type { SystemFeatures } from '@/types/feature'
|
|
import { type } from '@orpc/contract'
|
|
import { base } from '../base'
|
|
|
|
export const systemFeaturesContract = base
|
|
.route({
|
|
path: '/system-features',
|
|
method: 'GET',
|
|
})
|
|
.input(type<unknown>())
|
|
.output(type<SystemFeatures>())
|