docs: Update config import paths for module example (#10)

Looks like the import path is wrong. Sanity checking against an in-tree module (https://github.com/caddyserver/caddy/blob/v2/modules/filestorage/filestorage.go#L19) seems to confirm this change corrects the import path.
This commit is contained in:
Isaac Parker 2020-02-23 21:00:28 -08:00 committed by GitHub
parent 30060ce9af
commit 70733b8e4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -293,8 +293,8 @@ import (
"os" "os"
"github.com/caddyserver/caddy/v2" "github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/config/caddyfile" "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/caddyserver/caddy/v2/config/httpcaddyfile" "github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile"
"github.com/caddyserver/caddy/v2/modules/caddyhttp" "github.com/caddyserver/caddy/v2/modules/caddyhttp"
) )