Files
lightController/backend/models/drivers.go
2025-08-09 18:00:36 +02:00

10 lines
309 B
Go

package models
type Drivers struct {
Name string `json:"name"`
Description string `json:"description"`
ExecutablePath string `json:"executablePath,omitempty"`
WorkingDirectory string `json:"workingDirectory,omitempty"`
Arguments []string `json:"arguments,omitempty"`
}