github.com/machinefi/w3bstream@v1.6.5-rc9.0.20240426031326-b8c7c4876e72/pkg/wsctl/cmd/config/errors.go (about) 1 package config 2 3 import "fmt" 4 5 var ( 6 // ErrConfigNotMatch indicates error for no config matches 7 ErrConfigNotMatch = fmt.Errorf("no matching config") 8 // ErrEmptyEndpoint indicates error for empty endpoint 9 ErrEmptyEndpoint = fmt.Errorf("no endpoint has been set") 10 )