fiber/middleware/csrf/token.go
2023-10-11 15:16:35 +02:00

12 lines
168 B
Go

package csrf
import (
"time"
)
type Token struct {
Key string `json:"key"`
Raw []byte `json:"raw"`
Expiration time.Time `json:"expiration"`
}