...
1
16
17
18
19
20 package flags
21
22 import "flag"
23
24 var (
25 ImplementationOrganization = flag.String("organization", "", "Implementation's Organization to issue conformance to")
26 ImplementationProject = flag.String("project", "", "Implementation's project to issue conformance to")
27 ImplementationURL = flag.String("url", "", "Implementation's url to issue conformance to")
28 ImplementationVersion = flag.String("version", "", "Implementation's version to issue conformance to")
29 ImplementationContact = flag.String("contact", "", "Comma-separated list of contact information for the maintainers")
30 ConformanceProfiles = flag.String("conformance-profiles", "", "Comma-separated list of the conformance profiles to run")
31 ReportOutput = flag.String("report-output", "", "The file where to write the conformance report")
32 )
33
View as plain text