platform: Refactoring libbox to use gRPC-based protocol

This commit is contained in:
世界
2026-01-17 05:47:32 +08:00
parent 743b460e51
commit 5bc0dfa9dd
67 changed files with 6131 additions and 2002 deletions
+6
View File
@@ -8,6 +8,12 @@ type StringIterator interface {
Next() string
}
type Int32Iterator interface {
Len() int32
HasNext() bool
Next() int32
}
var _ StringIterator = (*iterator[string])(nil)
type iterator[T any] struct {