Compare commits

..
Author SHA1 Message Date
phoenix 2820cdfed6 Fixed error
Go Release / build-and-release (pull_request) Successful in 6s
Go CI / Test and Lint (push) Failing after 16s
Go CI / Test and Lint (pull_request) Failing after 6s
2026-05-27 22:47:21 -04:00
+2 -2
View File
@@ -14,8 +14,8 @@ type UserProfile struct {
Username string `json:"username"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Created time `json:"created"`
LastLogin *time `json:"last_login,omitempty"`
Created time.Time `json:"created"`
LastLogin *time.Time `json:"last_login,omitempty"`
}
func InitUserProfile(usr *User) (usrProfile *UserProfile, err error) {