12 lines
211 B
Go
12 lines
211 B
Go
package conf
|
|
|
|
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)
|
|
}
|