From e8a631338c0246ccd8fe1c9185bf86ec0f175a7d Mon Sep 17 00:00:00 2001 From: Egor Smolyakov Date: Mon, 7 Dec 2015 13:21:54 +0200 Subject: [PATCH] Added bundle option --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f89b8973..e76a3d99 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,8 @@ if err != nil { // The acme library takes care of completing the challenges to obtain the certificate(s). // Of course, the hostnames must resolve to this machine or it will fail. -certificates, err := client.ObtainCertificates([]string{"mydomain.com"}) +bundle := false +certificates, err := client.ObtainCertificates([]string{"mydomain.com"}, bundle) if err != nil { log.Fatal(err) }