memos/api/auth.go
2023-02-11 15:15:56 +08:00

12 lines
200 B
Go

package api
type SignIn struct {
Username string `json:"username"`
Password string `json:"password"`
}
type SignUp struct {
Username string `json:"username"`
Password string `json:"password"`
}