mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 14:19:49 +08:00
14 lines
290 B
Go
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)
|
|
}
|