mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 01:12:40 +08:00
11 lines
200 B
Go
11 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"`
|
|
}
|