gokultp/go-envparser

View on GitHub
pkg/envdecoder/errors.go

Summary

Maintainability
A
0 mins
Test Coverage
package envdecoder

import "errors"

var (
    // ErrDecoderNotImplemented is thrown if the type has not implemeted the Decoder interface
    ErrDecoderNotImplemented = errors.New("env Decoder interface is not implemented")
)