7 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			141 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from abc import ABC, abstractmethod
 | |
| 
 | |
| class Plugin(ABC):
 | |
| 
 | |
|     @abstractmethod
 | |
|     def hook(self) -> None:
 | |
|         raise NotImplementedError()
 |