12 lines
287 B
Go
12 lines
287 B
Go
|
package schema
|
||
|
|
||
|
import "leafdev.top/Leaf/leaf-library-3/internal/pkg/user"
|
||
|
|
||
|
type CurrentUserResponse struct {
|
||
|
IP string `json:"ip"`
|
||
|
Valid bool `json:"valid"`
|
||
|
UserEmail string `json:"userEmail"`
|
||
|
UserId user.Id `json:"userId"`
|
||
|
UserName string `json:"userName"`
|
||
|
}
|