mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-07 11:28:48 +03:00
14 lines
399 B
Go
14 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"
|
|
)
|