13 lines
205 B
Python
13 lines
205 B
Python
"""
|
|
Entrypoint for running ScrAIbe as a module:
|
|
|
|
python -m scraibe
|
|
|
|
Always launches the Web GUI (Gradio), never the CLI.
|
|
"""
|
|
|
|
from .webui import create_app
|
|
|
|
if __name__ == "__main__":
|
|
create_app()
|