Added service user

This commit is contained in:
phoenix
2025-11-20 12:20:42 -05:00
parent 5bfcb8e74b
commit a8a561d32b
+13
View File
@@ -0,0 +1,13 @@
package user
import (
"time"
"github.com/google/uuid"
)
type ServiceUser struct {
Id uuid.UUID `json:"id"`
Passphrase string `json:"passphrase,omitempty"`
Created *time.Time `json:"date_created,omitempty"`
}