File size: 334 Bytes
e1e9580
 
 
 
 
cd96d6d
e1e9580
 
cd96d6d
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
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
    )