docs: Minor updates for rc3

This commit is contained in:
Matthew Holt 2020-04-13 11:42:06 -06:00
parent 0b1bbb85f4
commit f0fcd65a6d
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5
4 changed files with 31 additions and 16 deletions

View file

@ -22,10 +22,7 @@ package mymodule
import "github.com/caddyserver/caddy/v2"
func init() {
err := caddy.RegisterModule(Gizmo{})
if err != nil {
log.Fatal(err)
}
caddy.RegisterModule(Gizmo{})
}
// Gizmo is an example; put your own type here.