mirror of
https://github.com/langgenius/dify.git
synced 2026-01-23 20:22:13 +08:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import {
|
|
getPublic as get,
|
|
} from './base'
|
|
import type {
|
|
AppData,
|
|
} from '@/models/share'
|
|
|
|
// would use trial-apps after api is ok
|
|
export const fetchTryAppInfo = async () => {
|
|
return get('/site') as Promise<AppData>
|
|
}
|