diff options
Diffstat (limited to 'caddyconfig/caddyfile/adapter.go')
| -rw-r--r-- | caddyconfig/caddyfile/adapter.go | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/caddyconfig/caddyfile/adapter.go b/caddyconfig/caddyfile/adapter.go index 55d7253..d5bb7c2 100644 --- a/caddyconfig/caddyfile/adapter.go +++ b/caddyconfig/caddyfile/adapter.go @@ -29,12 +29,12 @@ type Adapter struct {  }  // Adapt converts the Caddyfile config in body to Caddy JSON. -func (a Adapter) Adapt(body []byte, options map[string]interface{}) ([]byte, []caddyconfig.Warning, error) { +func (a Adapter) Adapt(body []byte, options map[string]any) ([]byte, []caddyconfig.Warning, error) {  	if a.ServerType == nil {  		return nil, nil, fmt.Errorf("no server type")  	}  	if options == nil { -		options = make(map[string]interface{}) +		options = make(map[string]any)  	}  	filename, _ := options["filename"].(string) @@ -116,7 +116,7 @@ type ServerType interface {  	// (e.g. CLI flags) and creates a Caddy  	// config, along with any warnings or  	// an error. -	Setup([]ServerBlock, map[string]interface{}) (*caddy.Config, []caddyconfig.Warning, error) +	Setup([]ServerBlock, map[string]any) (*caddy.Config, []caddyconfig.Warning, error)  }  // UnmarshalModule instantiates a module with the given ID and invokes | 
