mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-06 02:48:48 +03:00
14 lines
354 B
Go
14 lines
354 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/gzip"
|
||
|
_ "github.com/mholt/caddy/caddyhttp/log"
|
||
|
_ "github.com/mholt/caddy/caddyhttp/root"
|
||
|
_ "github.com/mholt/caddy/startupshutdown"
|
||
|
)
|