mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
10 lines
284 B
Python
10 lines
284 B
Python
from typing import Any, Optional
|
|
|
|
from django.db.backends.base.base import BaseDatabaseWrapper
|
|
|
|
class BaseDatabaseClient:
|
|
executable_name: Any = ...
|
|
connection: Any = ...
|
|
def __init__(self, connection: BaseDatabaseWrapper) -> None: ...
|
|
def runshell(self) -> None: ...
|