mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-17 17:04:22 +00:00
14 lines
300 B
Go
14 lines
300 B
Go
package models
|
|
|
|
type Couple struct {
|
|
AnchorTimeMs uint32
|
|
SongID uint32
|
|
}
|
|
|
|
type RecordData struct {
|
|
Audio string `json:"audio"`
|
|
Duration float64 `json:"duration"`
|
|
Channels int `json:"channels"`
|
|
SampleRate int `json:"sampleRate"`
|
|
SampleSize int `json:"sampleSize"`
|
|
}
|