Add script to delete project
This commit is contained in:
12
delete_project.py
Normal file
12
delete_project.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import sys
|
||||
from tjnetwork import *
|
||||
|
||||
def main():
|
||||
if len(sys.argv) != 2:
|
||||
print("delete_project name")
|
||||
return
|
||||
|
||||
delete_project(sys.argv[1])
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user