15 lines
312 B
Swift
15 lines
312 B
Swift
//
|
|
// BaseStubFunctionTrait.swift
|
|
// Cuckoo
|
|
//
|
|
// Created by Filip Dolnik on 27.06.16.
|
|
// Copyright © 2016 Brightify. All rights reserved.
|
|
//
|
|
|
|
public protocol BaseStubFunctionTrait {
|
|
associatedtype InputType
|
|
associatedtype OutputType
|
|
|
|
var stub: ConcreteStub<InputType, OutputType> { get }
|
|
}
|