maddy/framework/config/config.go

18 lines
321 B
Go

package config
import (
"fmt"
parser "github.com/foxcpp/maddy/framework/cfgparser"
)
type (
Node = parser.Node
)
func NodeErr(node Node, f string, args ...interface{}) error {
if node.File == "" {
return fmt.Errorf(f, args...)
}
return fmt.Errorf("%s:%d: %s", node.File, node.Line, fmt.Sprintf(f, args...))
}