github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/protocol/v2/errors.go (about) 1 // Copyright (c) 2022, R.I. Pienaar and the Choria Project contributors 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 5 package v2 6 7 import ( 8 "fmt" 9 ) 10 11 var ( 12 ErrIncorrectProtocol = fmt.Errorf("version 2 protocol requires a ed25519+jwt based security system") 13 )