summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/pkg/web/web.go
blob: 07cef483986bf2ff157f3913829de33435e30b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-3.0-or-later

package web

// HTTP is a struct with embedded Request and Client.
// This structure intended to be part of the module configuration.
// Supported configuration file formats: YAML.
type HTTP struct {
	Request `yaml:",inline" json:",inline"`
	Client  `yaml:",inline" json:",inline"`
}