mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 17:12:02 +03:00
12 lines
200 B
Go
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"`
|
|
}
|