mirror of
https://github.com/usememos/memos.git
synced 2025-02-19 12:50:41 +01:00
13 lines
231 B
Go
13 lines
231 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"`
|
|
Role Role `json:"role"`
|
|
}
|