fHDHR_IPTVorg-US/origin/origin_service.py
deathbybandaid 8a798bcc05 test
2020-12-09 08:13:42 -05:00

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