Spaces:
Running on Zero
Running on Zero
| """CloudVaultHub v175 Hugging Face entry point. | |
| Keep README.md ``app_file`` set to ``app.py``. The full application lives in | |
| ``cloudvault_app.py`` so a mistakenly selected helper file can still delegate | |
| to the same verified runtime. | |
| """ | |
| import runpy | |
| if __name__ == "__main__": | |
| runpy.run_module("cloudvault_app", run_name="__main__") | |