dt2 / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
68ad918 verified
raw
history blame contribute delete
148 Bytes
import gradio as gr
demo = gr.Interface(fn=lambda x: x, inputs=gr.DateTime(), outputs=gr.DateTime())
if __name__ == "__main__":
demo.launch()