diff --git a/pkg/user/service_user.go b/pkg/user/service_user.go new file mode 100644 index 0000000..a5fc7ad --- /dev/null +++ b/pkg/user/service_user.go @@ -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"` +}