mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 07:50:16 +08:00
9 lines
131 B
Python
9 lines
131 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class BaseBot(object):
|
|
|
|
def __init__(self):
|
|
raise NotImplementedError
|