Created
April 9, 2020 09:42
-
-
Save vadzappa/89b11c2a05c312c93c5efe505b75fc32 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 main | |
import ( | |
"blodpost/controller" | |
"blodpost/protocol" | |
) | |
func main() { | |
_ = controller.Process(&protocol.Company{ | |
Id: 11, | |
Owner: &protocol.User{ | |
Id: 1, | |
Name: "Batman", | |
Email: "[email protected]", | |
Title: &protocol.Title{ | |
Id: 100001, | |
Name: "CLSO - Chief Life Savior Officer", | |
}, | |
}, | |
CoOwner: &protocol.User{ | |
Id: 2, | |
Name: "Catwoman", | |
Email: "[email protected]", | |
Title: &protocol.Title{ | |
Id: 100002, | |
Name: "CCO - Chef Cuddling Officer", | |
}, | |
}, | |
Size: 3, | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment