添加了对 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
+13
View File
@@ -0,0 +1,13 @@
package zm_proto
import (
"fmt"
"testing"
)
func TestP1(t *testing.T) {
pb := NewProto()
err := pb.ParseImport("game\\pro_array.proto")
fmt.Println(err)
fmt.Println(pb)
}