mirror of
https://github.com/yuruotong1/autoMate.git
synced 2025-12-26 05:16:21 +08:00
10 lines
157 B
Python
10 lines
157 B
Python
from ui.main import main
|
|
from util import download_weights
|
|
def run():
|
|
download_weights.download()
|
|
main()
|
|
|
|
if __name__ == "__main__":
|
|
run()
|
|
|