stillbox/pkg/talkgroups/xport/format.go

17 lines
214 B
Go
Raw Normal View History

2024-11-21 13:23:21 -05:00
package xport
import (
"errors"
)
type Format string
const (
FormatRadioReference Format = "radioreference"
FormatSDRTrunk Format = "sdrtrunk"
)
var (
ErrBadType = errors.New("unknown format type")
)