Checking in vendor folder for ease of using go get.

This commit is contained in:
Renan DelValle 2018-10-23 23:32:59 -07:00
parent 7a1251853b
commit cdb4b5a1d0
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
3554 changed files with 1270116 additions and 0 deletions

View file

@ -0,0 +1,18 @@
struct Simple {
1: string value
}
struct Complex {
1: Simple struct_field
2: list<Simple> struct_list_field
3: set<Simple> struct_set_field
4: map<string,Simple> struct_map_field
5: list<set<map<string,list<Simple>>>> struct_nested_containers_field
6: map<string, list<map<string,Simple>> > struct_nested_containers_field2
7: list<list<string>> list_of_list_field
8: list<list<list<string>>> list_of_list_of_list_field
}
struct ComplexList {
1: list<Complex> struct_list_field;
}