Source code for testbot.resource.modules.software_module

#!/usr/bin/env python
# -*- coding: utf-8 -*-


[docs]__author__ = "Nuanguang Gu(Sunny)"
[docs]__email__ = "nuanguang.gu@aliyun.com"
from testbot.resource.modules.module import ModuleBase
[docs]class ServiceModuleBase(ModuleBase): """ 测试服务资源模块基类 """ def __init__(self, resource, *args: tuple, **kwargs: dict): super(ServiceModuleBase, self).__init__(resource, *args, **kwargs)