mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-10-31 06:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			143 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			143 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import nonebot
 | |
| 
 | |
| export = nonebot.export()
 | |
| export.foo = "bar"
 | |
| export["bar"] = "foo"
 | |
| 
 | |
| 
 | |
| @export
 | |
| def a():
 | |
|     pass
 | |
| 
 | |
| 
 | |
| @export.sub
 | |
| def b():
 | |
|     pass
 |