7 lines
129 B
Python
7 lines
129 B
Python
"""Entry point for SecureCode AI application."""
|
|
|
|
from src.securecode.app import launch
|
|
|
|
if __name__ == "__main__":
|
|
launch()
|