16 lines
416 B
Go
16 lines
416 B
Go
// Copyright 2023 wanderer <a_mirre at utb dot cz>
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
package handlers
|
|
|
|
type userSignin struct {
|
|
Username string `form:"username" json:"username"`
|
|
Password string `form:"password" json:"password"`
|
|
}
|
|
|
|
type userSignup struct {
|
|
Username string `form:"username" json:"username"`
|
|
Email string `form:"email" json:"email"`
|
|
Password string `form:"password" json:"password"`
|
|
}
|