mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-01 21:20:15 +00:00
9 lines
146 B
Python
9 lines
146 B
Python
from app.component.environment import auto_import
|
|
from app.command import cli
|
|
|
|
|
|
auto_import("app.command")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|