This commit is contained in:
Usman Nasir
2020-06-01 19:40:43 +05:00
parent 461f482897
commit 6e4c4e13e7
2 changed files with 15 additions and 14 deletions

View File

@@ -1396,6 +1396,17 @@ def main():
print(response.content.decode())
elif args.function == "listUsers":
from userManagment.views import fetchTableUsers
data = {}
data['userID'] = 1
response = fetchTableUsers(data)
print(response.content.decode())
if __name__ == "__main__":