12 lines
232 B
Go
12 lines
232 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type TechnologyInstance struct {
|
|
*model.TechnologyInstance
|
|
}
|
|
|
|
func NewTechnologyInstance() *TechnologyInstance {
|
|
return &TechnologyInstance{model.NewTechnologyInstance()}
|
|
}
|