13 lines
253 B
Python
13 lines
253 B
Python
|
|
|
|
class OriginService():
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def get_status_dict(self):
|
|
ret_status_dict = {
|
|
"Login": "Success",
|
|
}
|
|
return ret_status_dict
|