Created
January 26, 2018 17:49
-
-
Save mbonell/578ec64d158a19389d7a5005d549f8bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package service | |
// Request represents the data args for the service. | |
type Request struct { | |
A, B float64 | |
} | |
// Response represents the data results from the service. | |
type Response struct { | |
Result float64 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment