8 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from base import Plugin
 | |
| 
 | |
| class Greetings(Plugin):
 | |
|     def __init__(self, who: str) -> None:
 | |
|         self.who = who
 | |
| 
 | |
|     def hook(self) -> None:
 | |
|         print(f'Hello {self.who}')
 |