first commit

This commit is contained in:
2024-11-19 23:17:14 +01:00
commit 527344b220
12 changed files with 374 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}