()
| 165 | } |
| 166 | |
| 167 | func main() { |
| 168 | credentialsDirectory := flag.String("credentials_directory", "", "Path to the creds directory of this repo") |
| 169 | flag.Parse() |
| 170 | if *credentialsDirectory == "" { |
| 171 | fmt.Println("Must set credentials_directory argument") |
| 172 | os.Exit(1) |
| 173 | } |
| 174 | go createAndRunTLSServer(*credentialsDirectory, false, goodServerWithCRLPort) |
| 175 | go createAndRunTLSServer(*credentialsDirectory, true, revokedServerWithCRLPort) |
| 176 | insecureServer() |
| 177 | } |
nothing calls this directly
no test coverage detected