Added files for api and web classes

This commit is contained in:
N07070 2020-12-27 21:33:12 +01:00
parent 55b763dfe8
commit 4ed11cb078
2 changed files with 12 additions and 0 deletions

0
src/api.py Normal file
View File

12
src/web.py Normal file
View File

@ -0,0 +1,12 @@
class web(object):
"""docstring for web."""
def __init__(self, arg):
super(web, self).__init__()
self.arg = arg
def login_page():
return "login page"
def logout_page():
return "logout"