mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-04 23:56:30 +00:00
16 lines
389 B
Go
16 lines
389 B
Go
|
package analyzer
|
||
|
|
||
|
import (
|
||
|
"github.com/leonklingele/grouper/pkg/analyzer/consts"
|
||
|
"github.com/leonklingele/grouper/pkg/analyzer/imports"
|
||
|
"github.com/leonklingele/grouper/pkg/analyzer/types"
|
||
|
"github.com/leonklingele/grouper/pkg/analyzer/vars"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
ConstsConfig *consts.Config
|
||
|
ImportsConfig *imports.Config
|
||
|
TypesConfig *types.Config
|
||
|
VarsConfig *vars.Config
|
||
|
}
|