You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aegis/templates/cookiecutter-aegis-project/{{cookiecutter.project_slug}}/app/components/backend/api/health.py
Copy file name to clipboardExpand all lines: aegis/templates/cookiecutter-aegis-project/{{cookiecutter.project_slug}}/app/components/backend/startup/component_health.py.j2
Copy file name to clipboardExpand all lines: aegis/templates/cookiecutter-aegis-project/{{cookiecutter.project_slug}}/app/components/frontend/dashboard/cards/__init__.py.j2
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
1
"""Dashboard component cards."""
2
2
3
+
from .ai_card import AICard
4
+
from .auth_card import AuthCard
3
5
from .fastapi_card import FastAPICard
4
6
from .flet_card import FletCard
7
+
from .payment_card import PaymentCard
8
+
from .services_card import ServicesCard
5
9
{%- ifcookiecutter.include_database == "yes"%}
6
10
from .database_card import DatabaseCard
7
11
{%- endif%}
@@ -16,8 +20,12 @@ from .worker_card import WorkerCard
0 commit comments