mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
01b49f0743
Co-authored-by: pedrooot <pedromarting3@gmail.com>
8 lines
344 B
Python
8 lines
344 B
Python
import dash
|
|
|
|
# Initialize a minimal Dash app so that dashboard page modules can call
|
|
# dash.register_page() during import without raising PageError.
|
|
# This module-level initialization runs during pytest collection, before
|
|
# any test file in this directory is imported.
|
|
_test_app = dash.Dash("prowler_test_app", use_pages=True, pages_folder="")
|