php-parser/pkg/cfg/cfg.go

12 lines
210 B
Go
Raw Normal View History

2020-12-29 19:23:22 +00:00
package cfg
import (
"github.com/z7zmey/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/version"
)
type Config struct {
Version *version.Version
ErrorHandlerFunc func(e *errors.Error)
}