15 lines
285 B
Swift
15 lines
285 B
Swift
//
|
|
// ModuleDelegateProtocol.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Suresh, Kamlesh on 12/6/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
public protocol ModuleDelegateProtocol {
|
|
func getModuleWithName(_ moleculeName: String) -> Model?
|
|
}
|