Skip to content

Commit 6b750f7

Browse files
author
Zach Brown
committed
Updated godoc link
1 parent 9d49846 commit 6b750f7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ CertTools is a set of settings and tools for TLS Certificates.
77
It includes parsers for taking strings/config options and enabling minimum TLS versions and Cipher Suites.
88
It also includes some decent static defaults which can be used when creating a server.
99
```
10+
import (
11+
"github.com/snowzach/certtools"
12+
)
13+
1014
server := &http.Server{
1115
Addr: ":8443",
1216
Handler: http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
@@ -24,3 +28,7 @@ server := &http.Server{
2428
CertTools can be used to programatically generate POTENTIALLY INSECURE certificates that can be used for your web server.
2529
It's horribly insecure and is designed basically for the situation where you don't want to mess with cert files, you want
2630
to use tls/https and you don't want to have the cert be different every time you load your app.
31+
32+
[GoDoc]: https://godoc.org/github.com/snowzach/certtools
33+
[GoDoc Widget]: https://godoc.org/github.com/snowzach/certtools?status.svg
34+

0 commit comments

Comments
 (0)