This commit is contained in:
sujit
2025-09-18 18:26:35 +05:45
parent 1b3ebcc325
commit 33857e32d1
55 changed files with 757 additions and 896 deletions

View File

@@ -16,9 +16,9 @@ type ThresholdConfig struct {
}
type MetricsRegistry interface {
Register(metricName string, value interface{})
Register(metricName string, value any)
Increment(metricName string)
Get(metricName string) interface{}
Get(metricName string) any
}
type CircuitBreakerConfig struct {