mirror of
https://github.com/usememos/memos.git
synced 2025-02-14 02:10:39 +01:00
12 lines
127 B
Go
12 lines
127 B
Go
package api
|
|
|
|
type Login struct {
|
|
Name string
|
|
Password string
|
|
}
|
|
|
|
type Signup struct {
|
|
Name string
|
|
Password string
|
|
}
|