13 lines
322 B
Go
13 lines
322 B
Go
package handlers
|
|
|
|
type userSignin struct {
|
|
Username string `form:"username" json:"username"`
|
|
Password string `form:"password" json:"password"`
|
|
}
|
|
|
|
type userSignup struct {
|
|
Username string `form:"username" json:"username"`
|
|
Email string `form:"email" json:"email"`
|
|
Password string `form:"password" json:"password"`
|
|
}
|