mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-07-05 16:04:30 +08:00
24 lines
479 B
Go
24 lines
479 B
Go
package modules
|
|
|
|
import "yunion.io/x/onecloud/pkg/mcclient/modulebase"
|
|
|
|
var (
|
|
AnalysisPredictManager *SAnalysisPredict
|
|
)
|
|
|
|
func init() {
|
|
AnalysisPredictManager = NewAnalysisPredict()
|
|
Register(AnalysisPredictManager)
|
|
}
|
|
|
|
type SAnalysisPredict struct {
|
|
*modulebase.ResourceManager
|
|
}
|
|
|
|
func NewAnalysisPredict() *SAnalysisPredict {
|
|
man := NewSuggestionManager("analysispredict", "analysispredicts", []string{}, []string{})
|
|
return &SAnalysisPredict{
|
|
ResourceManager: &man,
|
|
}
|
|
}
|