DHEIVER's picture
Create main.py
8e651ce verified
raw
history blame contribute delete
270 Bytes
# main.py
from app.interface import criar_interface
if __name__ == "__main__":
interface = criar_interface()
interface.launch(
share=True,
server_name="0.0.0.0",
server_port=7860,
show_error=True,
favicon_path=None,
)