import LeadKit import RxSwift import Alamofire {% set serviceName = concat(networkServiceName, "NetworkService") -%} extension {{ serviceName }} { {% for method in methods %} {%- include 'blocks/method/method-func.twig' with { method: method, isStatic: false } %} {% endfor %} } extension Singleton where Self: {{ serviceName }} { {% for method in methods %} {%- include 'blocks/method/method-func.twig' with { method: method, isStatic: true } %} {% endfor %} } {{ "\n" }}