mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-02-17 16:20:05 +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
|