summaryrefslogtreecommitdiff
path: root/dns/asyncbackend.pyi
blob: 1ec9d32b5749f114391a8ca9a08a7ffb4ac617a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license

class Backend:
    ...

def get_backend(name: str) -> Backend:
    ...
def sniff() -> str:
    ...
def get_default_backend() -> Backend:
    ...
def set_default_backend(name: str) -> Backend:
    ...