1
0
Fork 0
mirror of synced 2024-07-08 07:55:48 +12:00
appwrite/app/sdks/client-swift/Sources/Appwrite/Service.swift
2020-08-30 19:23:15 +03:00

17 lines
251 B
Swift

//
// 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
}
}