mirror of
https://github.com/revanced/revanced-releases-api.git
synced 2025-04-29 22:14:28 +02:00

* refactor: import routers from old branch * refactor: import InternalCache removal * refactor: move routes into dedicated routers * fix: fixes entrypoint * refactor: add documentation and bump libs
7 lines
186 B
Python
7 lines
186 B
Python
import os
|
|
from pydantic import BaseModel
|
|
|
|
class PasetoSettings(BaseModel):
|
|
authpaseto_secret_key: str = os.environ['SECRET_KEY']
|
|
authpaseto_access_token_expires: int = 86400
|
|
|