Biotech2 / app.py
C2MV's picture
Update app.py
9a6ad14 verified
raw
history blame
261 Bytes
# app.py
from UI import create_interface
from interface import process_and_plot
def main():
demo = create_interface(process_and_plot)
demo.launch(share=True) # Agregar 'share=True' para crear un enlace público
if __name__ == "__main__":
main()