Skip to content

Instantly share code, notes, and snippets.

@RinniSwift
Last active April 18, 2019 21:16
Show Gist options
  • Save RinniSwift/987602ac3da95b1c9c7e255ada35f0ef to your computer and use it in GitHub Desktop.
Save RinniSwift/987602ac3da95b1c9c7e255ada35f0ef to your computer and use it in GitHub Desktop.
enum Router {
// ...
// 7.
var method: String {
switch self {
case .getSources, .getProductIds, .getProductInfo:
return "GET"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment