d399e0b37b
Also remove not needed @objc declaration Resolves: https://gitlab.steamware.net/eqn/eqn.ios/-/issues/44
16 lines
261 B
Swift
16 lines
261 B
Swift
//
|
|
// EQNCommandProtocol.swift
|
|
// Earthquake Network
|
|
//
|
|
// Created by Busi Andrea on 14/08/2020.
|
|
// Copyright © 2020 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
@objc
|
|
protocol EQNCommandProtocol: AnyObject {
|
|
@objc func execute()
|
|
}
|