forked from BigfootDev/flatbuffers
* adds code generation fuzzer target. * add buffer verification * add table verification in codegen fuzzer --------- Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
14 lines
162 B
Plaintext
14 lines
162 B
Plaintext
table Request {
|
|
id:int;
|
|
message:string;
|
|
}
|
|
|
|
table Response {
|
|
result:string;
|
|
}
|
|
|
|
rpc_service MyService {
|
|
DoSomething(Request):Response;
|
|
}
|
|
|
|
root_type Request; |