17 lines
410 B
Python
17 lines
410 B
Python
|
|
|
|
class OriginService():
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
self.channels_json_url = "https://iptv-org.github.io/iptv/channels.json"
|
|
|
|
self.m3u_url = "https://iptv-org.github.io/iptv/countries/us.m3u"
|
|
|
|
def get_status_dict(self):
|
|
ret_status_dict = {
|
|
"Login": "Success",
|
|
}
|
|
return ret_status_dict
|