File size: 410 Bytes
82f5baf
 
1562edc
 
72cfc45
 
 
 
1562edc
72cfc45
 
1562edc
c5b137a
1562edc
 
 
82f5baf
1562edc
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr

def main():
    with gr.Blocks() as demo:
        gr.Markdown("""
        ## Coming soon

        Gradio for https://aigc3d.github.io/motionshop/, please stay tuned
            """)


        demo.queue().launch(
            # inbrowser=args.inbrowser,
            # server_port=args.server_port,
            # server_name=args.server_name,
        )

if __name__ == '__main__':
    main()