php-parser/pkg/conf/conf.go

12 lines
217 B
Go

package conf
import (
"git.maride.cc/maride/php-parser/pkg/errors"
"git.maride.cc/maride/php-parser/pkg/version"
)
type Config struct {
Version *version.Version
ErrorHandlerFunc func(e *errors.Error)
}