添加了对 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
+12
View File
@@ -0,0 +1,12 @@
package zm_proto
type Message struct {
Name string
Fields []Field
Import *Import
}
func (m *Message) GetImportName() string {
return m.Import.Name
}