mirror of
https://github.com/letian1650/N3RD.git
synced 2025-01-25 04:05:17 +08:00
17 lines
312 B
Python
17 lines
312 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# File : error.py
|
||
|
# Author: DaShenHan&道长-----先苦后甜,任凭晚风拂柳颜------
|
||
|
# Date : 2022/8/25
|
||
|
|
||
|
def failed(msg):
|
||
|
return {
|
||
|
'msg':msg,
|
||
|
'code':404,
|
||
|
}
|
||
|
|
||
|
def success(msg):
|
||
|
return {
|
||
|
'msg':msg,
|
||
|
'code':200,
|
||
|
}
|