Skip to content

Commit

Permalink
fix: delete ExternalID
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastien Rigaud committed Mar 4, 2024
1 parent 3e29d43 commit a270cba
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions clients/user-store-svc/v1/entities/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ package user_store_svc_v1_entities
import "time"

type User struct {
ID string `json:"id"`
ExternalID string `json:"external_id"`
Username string `json:"username"`
Email string `json:"email"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
ID string `json:"id"`
Username string `json:"username"`
Email string `json:"email"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}

type UserCreate struct {
Expand Down

0 comments on commit a270cba

Please sign in to comment.