1package contextkeys 2 3type key int 4 5const ( 6 // Logs is used to pass *logs.Logs through the context 7 Logs key = iota 8 9 // Metrics is used to pass instance.Manager through the context 10 Metrics 11 12 // PrometheusRegisterer is used to pass prometheus.Registerer through the context 13 PrometheusRegisterer 14) 15 16