trigger rebuild

This commit is contained in:
eyedeekay
2025-04-18 23:19:56 -04:00
parent a7dcc6d28d
commit 2d42802050
2 changed files with 4 additions and 3 deletions

View File

@ -8,8 +8,10 @@ import (
"github.com/go-i2p/onramp" "github.com/go-i2p/onramp"
) )
var Garlic, GarlicErr = onramp.NewGarlic("git-looseleaf", "127.0.0.1:7656", onramp.OPT_WIDE) var (
var Onion, OnionErr = onramp.NewOnion("git-looseleaf") Garlic, GarlicErr = onramp.NewGarlic("git-looseleaf", "127.0.0.1:7656", onramp.OPT_WIDE)
Onion, OnionErr = onramp.NewOnion("git-looseleaf")
)
func Dial(network, addr string) (net.Conn, error) { func Dial(network, addr string) (net.Conn, error) {
// convert the addr to a URL // convert the addr to a URL

View File

@ -28,5 +28,4 @@ func GetListenerUnixWrapper(network string, addr net.Addr) (net.Listener, error)
default: default:
return nil, fmt.Errorf("unknown address type %T", addr) return nil, fmt.Errorf("unknown address type %T", addr)
} }
} }