mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 22:43:57 +01:00
21 lines
530 B
Python
21 lines
530 B
Python
import json
|
|
import starlette
|
|
|
|
def error(code: int, message: str, tip: str) -> starlette.responses.Response:
|
|
info = {'error': {
|
|
'code': code,
|
|
'message': message,
|
|
'tip': tip,
|
|
'website': 'https://nova-oss.com',
|
|
'by': 'NovaOSS/Nova-API'
|
|
}}
|
|
|
|
return starlette.responses.Response(status_code=code, content=json.dumps(info))
|
|
|
|
def yield_error(code: int, message: str, tip: str) -> str:
|
|
return json.dumps({
|
|
'code': code,
|
|
'message': message,
|
|
'tip': tip
|
|
})
|