feat: add new encoder and restructure project

This commit is contained in:
2025-07-22 21:55:45 +00:00
parent 83d828c935
commit ee67589393
20 changed files with 143 additions and 75 deletions

1
app/schemas/__init__.py Normal file
View File

@@ -0,0 +1 @@
from .url import UrlPayload

4
app/schemas/url.py Normal file
View File

@@ -0,0 +1,4 @@
from pydantic import BaseModel, HttpUrl
class UrlPayload(BaseModel):
url: HttpUrl