mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2025-06-03 03:15:26 +00:00
20 lines
484 B
Python
20 lines
484 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
|
|
|
|
@Time : 2024/8/15 下午11:29
|
|
@Author : snowykami
|
|
@Email : snowykami@outlook.com
|
|
@File : __init__.py.py
|
|
@Software: PyCharm
|
|
"""
|
|
from liteyuki.plugin import PluginMetadata, PluginType
|
|
|
|
from .divided_by_lifespan import *
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="计划任务",
|
|
description="计划任务插件,一些杂项任务的计划执行。",
|
|
type=PluginType.SERVICE
|
|
)
|