mirror of
https://github.com/fxkt-tech/liv
synced 2025-09-26 20:11:20 +08:00
11 lines
227 B
Go
11 lines
227 B
Go
package shelf
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// 轨道类型不存在
|
|
ErrTrackTypeNotFound = errors.New("track type not found")
|
|
// 元素与轨道不匹配
|
|
ErrTrackItemTypeNotMatch = errors.New("track and track_type not match")
|
|
)
|