mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

### Summary feat(.): initialize all factories #### Related Issues / PR's Removed all redundant commits of https://github.com/SigNoz/signoz/pull/6843 Closes https://github.com/SigNoz/signoz/pull/6782
10 lines
372 B
Go
10 lines
372 B
Go
package server
|
|
|
|
// Config holds the configuration for http.
|
|
type Config struct {
|
|
//Address specifies the TCP address for the server to listen on, in the form "host:port".
|
|
// If empty, ":http" (port 80) is used. The service names are defined in RFC 6335 and assigned by IANA.
|
|
// See net.Dial for details of the address format.
|
|
Address string `mapstructure:"address"`
|
|
}
|