initial commit

This commit is contained in:
2026-04-07 17:41:25 +02:00
commit 1ed9bdfa55
45 changed files with 4712 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package constants
// Certificate defaults
const (
DefaultCertDuration = "365d"
MaxCertDuration = 365 // days
CertMode = "persistent"
PublicKeyMode = "EC"
)
// Server selection defaults
const (
DefaultP2POnly = true
)