Biotech2 / app.py
C2MV's picture
Update app.py
2c5d78f verified
raw
history blame contribute delete
142 Bytes
# app.py
from UI import create_interface
def main():
demo = create_interface()
demo.launch()
if __name__ == "__main__":
main()