mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
7 lines
126 B
Python
7 lines
126 B
Python
from flask_restful import fields
|
|
|
|
account_money_fields = {
|
|
"total_quota": fields.Float,
|
|
"used_quota": fields.Float,
|
|
}
|