14 lines
179 B
Go
14 lines
179 B
Go
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)
|
|
}
|