tsk-8: Renamed pkg

This commit is contained in:
phoenix
2025-11-24 16:23:13 -05:00
parent fbaa9a48f3
commit b4359d931d
9 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package user
import (
"time"
"github.com/google/uuid"
)
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"`
}
+12
View File
@@ -0,0 +1,12 @@
package user
import (
"github.com/google/uuid"
)
type User struct {
Id uuid.UUID `json:"id"`
PhoneNumber string `json:"phone_number"`
Username string `json:"username"`
Password string `json:"password"`
}