mirror of
				https://github.com/LiteyukiStudio/LiteyukiBot.git
				synced 2025-10-31 19:36:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			170 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			170 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from fastapi import FastAPI
 | |
| from nonebot import get_app
 | |
| from .restful_api import *
 | |
| 
 | |
| 
 | |
| @app.get("/ping")
 | |
| async def root():
 | |
|     return {
 | |
|             "message": "pong"
 | |
|     }
 |