mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
28 lines
536 B
Python
28 lines
536 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from typing import Optional
|
||
|
from ipaddress import IPv4Address
|
||
|
|
||
|
|
||
|
class BaseDriver(object):
|
||
|
|
||
|
@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
|