mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-07-18 01:11:06 +00:00
16 lines
261 B
Go
16 lines
261 B
Go
package alex
|
|
|
|
import "github.com/k8sgpt-ai/k8sgpt/pkg/common"
|
|
|
|
type AlexAnalyzer struct {
|
|
}
|
|
|
|
func NewAlexAnalyzer() *AlexAnalyzer {
|
|
return &AlexAnalyzer{}
|
|
}
|
|
|
|
func (*AlexAnalyzer) Analyze(analysis common.Analyzer) ([]common.Result, error) {
|
|
|
|
return nil, nil
|
|
}
|