sh4shv4t's picture
feat: sync openenv validate fixes + full compliance package
10e192f
raw
history blame contribute delete
187 Bytes
from statestrike_env.environment import app
def main() -> None:
import uvicorn
uvicorn.run("server.app:app", host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()