File size: 353 Bytes
d3d8124 227fa34 d3d8124 227fa34 d3d8124 |
1 2 3 4 5 6 7 8 9 10 11 |
# app.py
from UI import create_interface
import interface as app_interface_module # Necesitamos la función process_and_plot
def main():
# Pasa la función de procesamiento real a create_interface
demo = create_interface(process_function_for_button=app_interface_module.process_and_plot)
demo.launch()
if __name__ == "__main__":
main() |