Skip to content

Instantly share code, notes, and snippets.

@O-O-wl
Last active July 9, 2020 02:10
Show Gist options
  • Save O-O-wl/056f32876ab9aec71cfb8028f7085c0e to your computer and use it in GitHub Desktop.
Save O-O-wl/056f32876ab9aec71cfb8028f7085c0e to your computer and use it in GitHub Desktop.
Before ViewModel
protocol ViewModel {
associatedtype Input
associatedtype Output
func transform(_ input: Input) -> Output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment