mirror of
https://github.com/usememos/memos.git
synced 2025-01-07 07:51:32 +03:00
12 lines
191 B
Go
12 lines
191 B
Go
package api
|
|
|
|
type Login struct {
|
|
Name string `json:"name"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type Signup struct {
|
|
Name string `json:"name"`
|
|
Password string `json:"password"`
|
|
}
|