mirror of
https://github.com/yourselfhosted/slash.git
synced 2025-06-05 22:09:34 +02:00
13 lines
241 B
Go
13 lines
241 B
Go
package api
|
|
|
|
type Signup struct {
|
|
Email string `json:"email"`
|
|
DisplayName string `json:"displayName"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type Signin struct {
|
|
Email string `json:"email"`
|
|
Password string `json:"password"`
|
|
}
|