mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-29 12:16:16 +08:00
15 lines
399 B
Go
15 lines
399 B
Go
package caddyhttp
|
|
|
|
import (
|
|
// plug in the server
|
|
_ "github.com/mholt/caddy/caddyhttp/httpserver"
|
|
|
|
// plug in the standard directives
|
|
_ "github.com/mholt/caddy/caddyhttp/bind"
|
|
_ "github.com/mholt/caddy/caddyhttp/errors"
|
|
_ "github.com/mholt/caddy/caddyhttp/gzip"
|
|
_ "github.com/mholt/caddy/caddyhttp/log"
|
|
_ "github.com/mholt/caddy/caddyhttp/root"
|
|
_ "github.com/mholt/caddy/startupshutdown"
|
|
)
|