Prevent users from creating messages with wrong parameters when pydantic is used (#615)

This commit is contained in:
Adrien
2024-09-12 19:34:47 +02:00
committed by GitHub
parent efaef5095c
commit 8fdcb381b7
6 changed files with 797 additions and 884 deletions

View File

@@ -0,0 +1,7 @@
syntax = "proto3";
package invalid_field;
message Test {
int32 x = 1;
}