mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
33 lines
701 B
Go
33 lines
701 B
Go
package main
|
|
|
|
import (
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/common"
|
|
)
|
|
|
|
func main() {
|
|
// Testing
|
|
common.StartDB()
|
|
|
|
//Testing dependencies
|
|
var testProject common.Project
|
|
testProject.Name = "MyAweSomeProject"
|
|
|
|
var testFile common.File
|
|
testFile.Name = "MyAwesomeFilename"
|
|
|
|
var testSimulation common.Simulation
|
|
testSimulation.Name = "MyAwesomeSimulation"
|
|
|
|
var testSimulationModel common.SimulationModel
|
|
testSimulationModel.Name = "MyAwesomeSimulationModel"
|
|
|
|
var testSimulator common.Simulator
|
|
testSimulator.Host = "SimulatorHost"
|
|
|
|
var testUser common.User
|
|
testUser.Username = "MyUserName"
|
|
|
|
var testVis common.Visualization
|
|
testVis.Name = "MyAwesomeVisualization"
|
|
|
|
}
|