11 lines
173 B
Python
11 lines
173 B
Python
from tjnetwork import *
|
|
|
|
def main():
|
|
for p in list_project():
|
|
open_project(p)
|
|
restore(p)
|
|
close_project(p)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|