feat: initialize FastAPI project structure with job posting routes and models

This commit is contained in:
Esa Kataja
2025-08-04 11:38:07 +03:00
parent f007284ad8
commit 6374f2f68a
11 changed files with 187 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from fastapi import HTTPException, status
class NotImplementedException(HTTPException):
def __init__(self):
super().__init__(
status_code=status.HTTP_501_NOT_IMPLEMENTED,
detail="Not implemented yet",
)