/*
* Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
*
* This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
* more information.
*/
package auth
// Claims holds claims of a user that are read after login.
type Claims struct {
Name string `json:"name"`
Email string `json:"email"`
}