memos/api/auth.go

12 lines
191 B
Go
Raw Normal View History

2021-12-08 23:43:14 +08:00
package api
2022-02-03 15:32:03 +08:00
type Login struct {
Name string `json:"name"`
Password string `json:"password"`
2021-12-08 23:43:14 +08:00
}
2022-02-03 15:32:03 +08:00
type Signup struct {
Name string `json:"name"`
Password string `json:"password"`
2021-12-08 23:43:14 +08:00
}