mirror of
				https://github.com/LiteyukiStudio/LiteyukiBot.git
				synced 2025-10-31 13:46:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			880 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			880 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os.path
 | |
| import shutil
 | |
| 
 | |
| import nonebot.plugin
 | |
| 
 | |
| from liteyuki.utils import init_log
 | |
| from liteyuki.utils.data_manager import InstalledPlugin, plugin_db
 | |
| from liteyuki.utils.resource import load_resource_from_dir, load_resources
 | |
| from liteyuki.utils.tools import check_for_package
 | |
| 
 | |
| load_resources()
 | |
| init_log()
 | |
| 
 | |
| nonebot.plugin.load_plugins("liteyuki/plugins")
 | |
| nonebot.plugin.load_plugins("plugins")
 | |
| 
 | |
| # 从数据库读取已安装的插件
 | |
| installed_plugins: list[InstalledPlugin] = plugin_db.all(InstalledPlugin())
 | |
| if installed_plugins:
 | |
|     for installed_plugin in installed_plugins:
 | |
|         if not check_for_package(installed_plugin.module_name):
 | |
|             nonebot.logger.error(f"{installed_plugin.module_name} not installed, but in loading database. please run `npm fixup` in chat to reinstall it.")
 | |
|         else:
 | |
|             nonebot.load_plugin(installed_plugin.module_name)
 |