12 lines
158 B
Go
12 lines
158 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type SysConfig struct {
|
||
|
*model.SysConfig
|
||
|
}
|
||
|
|
||
|
func NewSysConfig() *SysConfig {
|
||
|
return &SysConfig{}
|
||
|
}
|