robot-control-manager/main.go

15 lines
170 B
Go

package main
import (
"fmt"
"jannex/robot-control-manager/modules/database"
)
func init() {
database.InitDatabase()
}
func main() {
fmt.Println("Hello, World!")
}