mirror of
https://github.com/gofiber/fiber.git
synced 2025-04-27 13:14:31 +00:00
12 lines
168 B
Go
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"`
|
|
}
|