17 lines
246 B
Go
17 lines
246 B
Go
package config
|
|
|
|
import (
|
|
"aidanwoods.dev/go-paseto"
|
|
"time"
|
|
)
|
|
|
|
type App struct {
|
|
Security Security
|
|
}
|
|
|
|
type Security struct {
|
|
AsymmetricKey paseto.V4AsymmetricSecretKey
|
|
PublicKey paseto.V4AsymmetricPublicKey
|
|
Duration time.Duration
|
|
}
|