增加账单、套餐相关配置

This commit is contained in:
GoEdgeLab
2021-11-11 08:31:32 +08:00
parent 79da524d88
commit 3d8d2438bc
7 changed files with 57 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package serverconfigs
type PlanConfig struct {
Id int64 `yaml:"id" json:"id"`
}
func (this *PlanConfig) Init() error {
return nil
}