mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
12 lines
165 B
Go
12 lines
165 B
Go
package main
|
|
|
|
type Segment struct {
|
|
Start int
|
|
Stop int
|
|
Text string
|
|
TextHash string
|
|
SegmentID string
|
|
Translated string
|
|
CacheKey string
|
|
}
|