cloudinit/datasource/metadata_service.go

21 lines
388 B
Go
Raw Normal View History

2014-03-18 09:00:41 -07:00
package datasource
2014-03-04 16:36:05 -08:00
import "github.com/coreos/coreos-cloudinit/pkg"
2014-03-04 16:36:05 -08:00
type metadataService struct {
url string
2014-03-04 16:36:05 -08:00
}
2014-03-04 17:06:52 -08:00
func NewMetadataService(url string) *metadataService {
return &metadataService{url}
2014-03-04 16:36:05 -08:00
}
2014-03-18 09:00:41 -07:00
func (ms *metadataService) Fetch() ([]byte, error) {
client := pkg.NewHttpClient()
return client.Get(ms.url)
2014-03-04 16:36:05 -08:00
}
2014-03-18 09:00:41 -07:00
func (ms *metadataService) Type() string {
return "metadata-service"
}