polycule-connect/polyculeconnect/internal/model/user.go
Melora Hugues 93d7b13928
Some checks failed
/ docker-build-only (push) Failing after 28s
/ go-test (push) Failing after 1m17s
Link userinfo from backend to the clients #48
2024-10-16 21:42:39 +02:00

9 lines
123 B
Go

package model
import "github.com/google/uuid"
type User struct {
ID uuid.UUID
Email string
Username string
}