9 lines
200 B
Go
9 lines
200 B
Go
package config
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrUnsupportedEncryptionFormat = errors.New("unsupported encryption format")
|
|
ErrUnsupportedCompressionFormat = errors.New("unsupported compression format")
|
|
)
|