conf.GetConfig().BootstrapAddress

This commit is contained in:
mr
2026-01-27 16:23:05 +01:00
parent 0d3446ca5b
commit be74093308
2 changed files with 17 additions and 4 deletions

View File

@@ -3,10 +3,11 @@ package conf
import "sync"
type Config struct {
PublicKeyPath string
PrivateKeyPath string
DHTEndpointPort int64
PSKPath string
PublicKeyPath string
PrivateKeyPath string
DHTEndpointPort int64
PSKPath string
BootstrapAddress string
}
var instance *Config