添加了对 proto 的解析支持

This commit is contained in:
2025-09-26 16:16:05 +08:00
parent 1cec74cec7
commit 84149a54de
10 changed files with 528 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
package zm_proto
type Import struct {
Name string
Path string
Messages []Message
Imports []string
Enum map[string]bool
Proto *Proto
}