auth/internal/model/profile.go

13 lines
142 B
Go

package model
type Profile struct {
Name string
URL URL
Photo URL
Email string
}
func NewProfile() *Profile {
return new(Profile)
}