Skip to content

Files

Latest commit

 

History

History
15 lines (13 loc) · 428 Bytes

File metadata and controls

15 lines (13 loc) · 428 Bytes

代码结构

- src
  - AbstractHandler.py # 责任链抽象类或接口,定义调用链,供具体类继承和实现
  - AuthHandler.py # 具体事件处理类之一,继承抽象类
  - RequestHandler.py # 具体事件处理类之一,继承抽象类
  - UserHandler.py # 具体事件处理类之一,继承抽象类

测试验证

$ cd ./chain-responsibility/python
$ python test/test.py