mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-16 21:56:40 -05:00
15 lines
590 B
Go
15 lines
590 B
Go
|
package standard
|
||
|
|
||
|
import (
|
||
|
// standard Caddy modules
|
||
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
||
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/json5"
|
||
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/jsonc"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/standard"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls/distributedstek"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls/standardstek"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/filestorage"
|
||
|
_ "github.com/caddyserver/caddy/v2/modules/logging"
|
||
|
)
|