File size: 266 Bytes
ed881c4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Entry point for the Mars Vision Leaderboard application."""

from app.app import create_interface

def main():
    """Run the Mars Vision Leaderboard application."""
    demo = create_interface()
    demo.launch()

if __name__ == "__main__":
    main()