1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-07 21:47:02 +09:00
any-sync/net/config.go
2023-06-08 12:35:29 +02:00

7 lines
92 B
Go

package net
import "errors"
var (
ErrUnableToConnect = errors.New("unable to connect")
)