1
0
Fork 0
mirror of synced 2024-07-17 04:16:19 +12:00
appwrite/app/sdks/client-swift/Sources/Appwrite/Service.swift

17 lines
251 B
Swift
Raw Normal View History

2020-08-31 04:23:15 +12:00
//
// Service.swift
//
// Created by Armino <devel@boioiong.com>
// GitHub: https://github.com/armino-dev/sdk-generator
//
open class Service {
open var client: Client;
public init(client: Client)
{
self.client = client
}
}