php-parser/pkg/conf/conf.go
2023-12-10 00:36:22 +01:00

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)
}