1
0
forked from bot/app
This commit is contained in:
2023-10-04 21:25:49 +08:00
parent e495028198
commit 656a4687f2
25 changed files with 431 additions and 21 deletions

View File

@ -1,11 +0,0 @@
print(
'''\033[34m __ ______ ________ ________ __ __ __ __ __ __ ______
/ | / |/ |/ |/ \ / |/ | / |/ | / |/ |
$$ | $$$$$$/ $$$$$$$$/ $$$$$$$$/ $$ \ /$$/ $$ | $$ |$$ | /$$/ $$$$$$/
$$ | $$ | $$ | $$ |__ $$ \/$$/ $$ | $$ |$$ |/$$/ $$ |
$$ | $$ | $$ | $$ | $$ $$/ $$ | $$ |$$ $$< $$ |
$$ | $$ | $$ | $$$$$/ $$$$/ $$ | $$ |$$$$$ \ $$ |
$$ |_____ _$$ |_ $$ | $$ |_____ $$ | $$ \__$$ |$$ |$$ \ _$$ |_
$$ |/ $$ | $$ | $$ | $$ | $$ $$/ $$ | $$ |/ $$ |
$$$$$$$$/ $$$$$$/ $$/ $$$$$$$$/ $$/ $$$$$$/ $$/ $$/ $$$$$$/ \033[0m'''
)

View File

@ -1 +0,0 @@
from nonebot import on_command

View File

@ -0,0 +1 @@
from .autorun import *

View File

@ -0,0 +1,6 @@
import nonebot
from nonebot import get_driver
from nonebot.utils import run_sync
driver = get_driver()

View File

@ -0,0 +1,11 @@
from nonebot.plugin import PluginMetadata
__plugin_meta__ = PluginMetadata(
name='text.weather.name',
description='text.weather.description',
usage='text.weather.usage',
extra={
'liteyuki_plugin': True
}
)