First Commit

This commit is contained in:
donaldzou
2020-10-18 01:10:13 -04:00
parent 53add563a3
commit 40d05f3434
6 changed files with 467 additions and 0 deletions

5
test.py Normal file
View File

@@ -0,0 +1,5 @@
import os
import subprocess
try: status = subprocess.check_output("wg show wg0", shell=True)
except Exception: print("false")
else:print(status.decode("UTF-8"))