Skip to content

Instantly share code, notes, and snippets.

@regularberry
Created November 30, 2018 19:24
Show Gist options
  • Save regularberry/0964b4482d35f65d0de5d8dafb37fe6f to your computer and use it in GitHub Desktop.
Save regularberry/0964b4482d35f65d0de5d8dafb37fe6f to your computer and use it in GitHub Desktop.
// Generated using Sourcery 0.15.0 — https://github.com/krzysztofzablocki/Sourcery
// DO NOT EDIT
import Foundation
protocol HasFancy {
func rockAndRoll()
func secondMethod() -> Int
}
struct DefaultHasFancy: HasFancy {
func rockAndRoll() {
}
func secondMethod() -> Int {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment