9 lines
121 B
Go
9 lines
121 B
Go
|
package file
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// Error Messages
|
||
|
var (
|
||
|
ErrUnsupportedStorageType = errors.New("storage type invalid")
|
||
|
)
|