php-parser/pkg/conf/conf.go

12 lines
217 B
Go
Raw Normal View History

2021-02-13 21:54:34 +00:00
package conf
2020-12-29 19:23:22 +00:00
import (
2023-12-09 21:36:19 +00:00
"git.maride.cc/maride/php-parser/pkg/errors"
"git.maride.cc/maride/php-parser/pkg/version"
2020-12-29 19:23:22 +00:00
)
type Config struct {
Version *version.Version
ErrorHandlerFunc func(e *errors.Error)
}