12 lines
247 B
Python
Executable File
12 lines
247 B
Python
Executable File
|
|
def handle_service_get(self, in_path, response):
|
|
return in_path.startswith("dev/")
|
|
|
|
def handle_service_post(self, in_path, data, response):
|
|
return False
|
|
|
|
def handle_service_start():
|
|
pass
|
|
|
|
def handle_service_stop():
|
|
pass |