add some more todos

This commit is contained in:
Michael Jerger 2023-11-17 10:10:04 +01:00
parent 5c998a5c46
commit fbff67f11a

View file

@ -6,6 +6,7 @@ import (
"strings"
)
// TODO: Name ActorId ?
type ActorData struct {
schema string
userId string
@ -14,6 +15,7 @@ type ActorData struct {
port string // optional
}
// TODO: Align validation-api to example from dda-devops-build
func (a ActorData) ValidateActorData() error {
if a.schema == "" || a.host == "" {