File arrangement

This commit is contained in:
donaldzou
2020-10-20 10:44:41 -04:00
parent 96af266c38
commit 2f327ed49a
11 changed files with 1 additions and 1 deletions
+5
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"))