blob: 05367e2483f954aa1a20c929d0d759f78326054b [file] [log] [blame]
package cdncontainers
import (
"net/http"
"github.com/rackspace/gophercloud"
)
type headerResult struct {
gophercloud.Result
}
func (hr headerResult) ExtractHeader() (http.Header, error) {
return hr.Header, hr.Err
}
// EnableResult represents the result of a get operation.
type EnableResult struct {
headerResult
}