10 lines
158 B
Go
10 lines
158 B
Go
|
package definition
|
||
|
|
||
|
type AuthLoginRequest struct {
|
||
|
Username string `json:"username"`
|
||
|
Password string `json:"password"`
|
||
|
}
|
||
|
|
||
|
type AuthLoginResponse struct {
|
||
|
}
|