mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import { get } from '@/service/base'
|
|
import type { UserMoney } from '@/models/common-extend'
|
|
|
|
export const fetchUserMoney = () => {
|
|
return get<UserMoney>('account/money')
|
|
}
|