default proto shouldn't have '://'

This commit is contained in:
2022-02-27 02:31:02 -08:00
parent 2787683adc
commit 0db2ab6b97

View File

@@ -11,7 +11,7 @@ import (
const ( const (
defaultPort = 4000 defaultPort = 4000
defaultProto = "tcp://" defaultProto = "tcp"
) )
type Database struct { type Database struct {