Implement running list on a network

This commit is contained in:
2022-08-01 21:39:11 +01:00
parent 766b530ace
commit fa53e11ff0
4 changed files with 45 additions and 0 deletions

View File

@@ -118,3 +118,10 @@ def run_auto(net):
payload = {}
deleted = threshold_request(url, payload, method="POST")
return deleted
def run_list(net):
url = f"irc/list/{net}"
payload = {}
ran = threshold_request(url, payload, method="POST")
return ran