Biotech2 / app.py
C2MV's picture
Update app.py
900b475 verified
raw
history blame
152 Bytes
# app.py
from UI import create_interface
def main():
demo = create_interface()
demo.launch(share=True)
if __name__ == "__main__":
main()