Files
simplex-chat/apps/ios/MyService/MyServiceProtocol.swift
2022-06-02 11:06:45 +01:00

15 lines
298 B
Swift

//
// MyServiceProtocol.swift
// MyService
//
// Created by Evgeny on 01/06/2022.
// Copyright © 2022 SimpleX Chat. All rights reserved.
//
import Foundation
@objc public protocol MyServiceProtocol {
func upperCaseString(_ string: String, withReply reply: @escaping (String) -> Void)
}