mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
12 lines
342 B
Go
12 lines
342 B
Go
package simulationmodel
|
|
|
|
import (
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/common"
|
|
)
|
|
|
|
func FindAllSimulationModels() ([]common.SimulationModel, int, error) {
|
|
db := common.GetDB()
|
|
var simulationmodels []common.SimulationModel
|
|
err := db.Find(&simulationmodels).Error
|
|
return simulationmodels, len(simulationmodels), err
|
|
}
|