9 lines
126 B
Python
9 lines
126 B
Python
from BaseLib.BaseView import BaseView
|
|
|
|
|
|
class PingView(BaseView):
|
|
endpoint = 'ping'
|
|
|
|
def get(self):
|
|
return {}
|