15 lines
298 B
Swift
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)
|
|
}
|
|
|