Skip to content

Instantly share code, notes, and snippets.

@Yoloabdo
Last active April 1, 2019 13:32
Show Gist options
  • Select an option

  • Save Yoloabdo/71a88421a1e160eb8521bf59c7b2ab6b to your computer and use it in GitHub Desktop.

Select an option

Save Yoloabdo/71a88421a1e160eb8521bf59c7b2ab6b to your computer and use it in GitHub Desktop.
struct CommandsCombiner: Command {
let commands: [Command]
init(_ commands: Command...) {
self.commands = commands
}
func execute() throws {
try commands.forEach { try $0.execute() }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment