clear up useless env file

This commit is contained in:
mr
2026-02-02 09:18:00 +01:00
parent 23b6b02803
commit a74f764f5a
2 changed files with 0 additions and 27 deletions

View File

@@ -1,21 +0,0 @@
package conf
import "sync"
type Config struct {
PublicKeyPath string
PrivateKeyPath string
DHTEndpointPort int64
PSKPath string
BootstrapAddress string
}
var instance *Config
var once sync.Once
func GetConfig() *Config {
once.Do(func() {
instance = &Config{}
})
return instance
}