default proto shouldn't have '://'

This commit is contained in:
Kyle Isom 2022-02-27 02:31:02 -08:00
parent 2787683adc
commit 0db2ab6b97
1 changed files with 1 additions and 1 deletions

View File

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