mirror of
https://github.com/usememos/memos.git
synced 2025-03-20 12:40:09 +01: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"`
|
|
}
|