commit | 6c002b61e591b712fca2713eefd3e99c5782bb21 | [log] [tgz] |
---|---|---|
author | Jiayu Liu <Jimexist@users.noreply.github.com> | Sat May 07 00:40:03 2022 +0800 |
committer | GitHub <noreply@github.com> | Fri May 06 12:40:03 2022 -0400 |
tree | 3c3bb2423982531edd4721a1c76b6723754a0a30 | |
parent | 53ec08228a14130909d4dd6fc2c98f47a09d76b0 [diff] [blame] |
THRIFT-5571: add metadata map building to kotlin generator (#2584)
diff --git a/lib/kotlin/src/test/resources/AnnotationTest.thrift b/lib/kotlin/src/test/resources/AnnotationTest.thrift new file mode 100644 index 0000000..0c4bca2 --- /dev/null +++ b/lib/kotlin/src/test/resources/AnnotationTest.thrift
@@ -0,0 +1,7 @@ +namespace java org.apache.thrift.kotlin.annotation.test + +struct Person { + 1: required i64 id (min="1", max="100000") + 2: required string name + 3: optional string phoneNumber +}