engine/types/encipher.go

16 lines
367 B
Go
Raw Normal View History

2024-02-11 01:31:01 +08:00
package types
type CertFileBytes struct {
Private []byte
Public []byte
}
type JwtClaims struct {
ID uint `json:"id"`
Identity string `json:"identity"`
Extend map[string]string `json:"extend"`
Client string `json:"client"`
Role string `json:"role"`
ExpiresAt int64 `json:"exp"`
}