DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

ref: a20635584f23b381e2f025219d48ef23f2f13324 emerwen-web/internal/auth/claims.go -rw-r--r-- 318 bytes
a2063558Jonni Liljamo chore: update flake inputs 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * 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"`
}