File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ package trustedservices
2+
3+ import (
4+ "github.com/veraison/services/handler"
5+ )
6+
7+ // Interface Component Verifier Client Interface
8+ type ICVClient interface {
9+ GetCVClient (mt string ) (handler.IComponentVerifierClientHandler , error )
10+
11+ // TO DO, Identify how to get a list of Supported CV Clients..?
12+ GetSupportedCVClient () ([]handler.IComponentVerifierClientHandler , error )
13+ }
Original file line number Diff line number Diff line change 1+ package trustedservices
2+
3+ import cp "github.com/veraison/services/vts/compositeevidenceparser"
4+
5+ // Interface parser
6+ type IParser interface {
7+ GetParserFromMediaType (mt string ) (cp.ICompositeEvidenceParser , error )
8+
9+ // TO DO, Identify how to get a list of Supported Parsers under Veraison..?
10+ GetSupportedParsers () ([]cp.ICompositeEvidenceParser , error )
11+ }
You can’t perform that action at this time.
0 commit comments