mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-14 10:47:30 +08:00
12 lines
217 B
Python
12 lines
217 B
Python
import typing
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from fastapi_admin.app import FastAPIAdmin
|
|
|
|
|
|
class Provider:
|
|
name = "provider"
|
|
|
|
async def register(self, app: "FastAPIAdmin"):
|
|
setattr(app, self.name, self)
|