mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
18 lines
321 B
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...))
|
|
}
|