mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 13:06:59 -05:00
17 lines
301 B
Python
17 lines
301 B
Python
|
|
|
|
class Origin_API():
|
|
endpoints = ["/api/origin"]
|
|
endpoint_name = "api_origin"
|
|
endpoint_methods = ["GET", "POST"]
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
|
|
return "Success"
|