12 lines
219 B
Python
12 lines
219 B
Python
from app.services.tjnetwork import *
|
|
|
|
def main():
|
|
for p in list_project():
|
|
print(f'restore {p}...')
|
|
open_project(p)
|
|
restore(p)
|
|
close_project(p)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|