Added Username field to ServiceUser

This commit is contained in:
phoenix
2025-11-20 13:19:21 -05:00
parent 7714d5dc33
commit b1ceb74233
+1
View File
@@ -8,6 +8,7 @@ import (
type ServiceUser struct {
Id uuid.UUID `json:"id"`
Username string `json:"username,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
Created *time.Time `json:"date_created,omitempty"`
}