适配器模式(Adapter)的golang实现

适配器

以银行取款/存款为例,工商银行(ICBC)与建设银行(CBC)分别提供了不通的取款/存款接口
建设银行: CBCWithdraw/CBCDeposit
工商银行:ICBCWithdraw/ICBCDeposit

代码示例下载:https://github.com/yycaptain/adapter-go

你可能感兴趣的:(WebServer)