13 lines
225 B
Python
13 lines
225 B
Python
from .agent import create_agent_app
|
|
|
|
app = create_agent_app()
|
|
|
|
|
|
def main() -> None:
|
|
"""Application entry point for ASGI hosts and local smoke checks."""
|
|
print(app["card"].name)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|