mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +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>
|
|
}
|