MugdhaV
Fix class name: SecurityAuditorApp -> ModernSecurityAuditorApp
cd96d6d
raw
history blame contribute delete
334 Bytes
"""
HuggingFace Spaces Entry Point for Security Auditor
Launches the Gradio interface with Modal backend integration
"""
from gradio_app import ModernSecurityAuditorApp
if __name__ == "__main__":
app = ModernSecurityAuditorApp()
app.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)