// // Service.swift // // Created by Armino // GitHub: https://github.com/armino-dev/sdk-generator // open class Service { open var client: Client; public init(client: Client) { self.client = client } }