摘要: # 适配器模式 from abc import ABCMeta, abstractmethod class HTTPRequest(object): def __init__(self, url, body): self.url = url self.body = body def get(self 阅读全文
posted @ 2021-08-17 14:10 拖延症的理想主义者 阅读(73) 评论(0) 推荐(0) 编辑