17 lines
214 B
Go
17 lines
214 B
Go
|
package xport
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
type Format string
|
||
|
|
||
|
const (
|
||
|
FormatRadioReference Format = "radioreference"
|
||
|
FormatSDRTrunk Format = "sdrtrunk"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrBadType = errors.New("unknown format type")
|
||
|
)
|