mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
37 lines
739 B
Python
37 lines
739 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from typing import Optional
|
|
from ipaddress import IPv4Address
|
|
|
|
|
|
class BaseDriver(object):
|
|
|
|
def __init__(self):
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
def server_app(self):
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
def asgi(self):
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
def logger(self):
|
|
raise NotImplementedError
|
|
|
|
def run(self,
|
|
host: Optional[IPv4Address] = None,
|
|
port: Optional[int] = None,
|
|
*args,
|
|
**kwargs):
|
|
raise NotImplementedError
|
|
|
|
async def _handle_http(self):
|
|
raise NotImplementedError
|
|
|
|
async def _handle_ws_reverse(self):
|
|
raise NotImplementedError
|