14 lines
275 B
Go
14 lines
275 B
Go
package repository
|
|
|
|
import (
|
|
device_point "energy-management-system/repository/device-point"
|
|
"energy-management-system/repository/peak-valley"
|
|
)
|
|
|
|
type groupRepository struct {
|
|
peak_valley.PeakValley
|
|
device_point.DevicePoint
|
|
}
|
|
|
|
var GroupRepositorys = new(groupRepository)
|