added more stuff including some of docker support

This commit is contained in:
2025-03-15 21:16:17 +02:00
parent 4b9c30be7e
commit 5f99ec77a0
22 changed files with 1009 additions and 261 deletions

14
models/types.go Normal file
View File

@@ -0,0 +1,14 @@
package models
type DatabaseType string
const (
MONGO DatabaseType = "mongo"
)
type InstanceManagerType string
const (
KUBERNETES InstanceManagerType = "kubernetes"
DOCKER InstanceManagerType = "docker"
)