Files
cloudpods/pkg/mcclient/modules/mod_rates.go
T
2018-08-01 14:13:23 +08:00

14 lines
290 B
Go

package modules
var (
Rates ResourceManager
)
func init() {
Rates = NewMeterManager("rate", "rates",
[]string{"id", "brand", "model", "res_type", "sub_res_type", "duration", "unit", "spec", "rate", "effective_date", "platform", "effective_flag"},
[]string{},
)
register(&Rates)
}