mirror of
https://git.fragrance.moe/Fragrance/maquitous.git
synced 2025-01-16 08:57:24 +00:00
14 lines
220 B
Python
14 lines
220 B
Python
import json
|
|
|
|
from sdgb import sdgb_api
|
|
|
|
def charge(userId):
|
|
data = json.dumps({
|
|
"userId": userId,
|
|
})
|
|
|
|
charge_result = json.loads(sdgb_api(data, "GetUserChargeApi", userId))
|
|
|
|
return charge_result
|
|
|