Davy592's picture
Adapted to HSpaces structure
bda9999
raw
history blame contribute delete
367 Bytes
"""Entry point for Hugging Face Spaces.
This module imports and exposes the FastAPI app from the API module,
allowing Hugging Face Spaces to discover and run the application automatically.
"""
from nygaardcodecommentclassification.api.API import app
__all__ = ["app"]
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)