mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
21 lines
319 B
Go
21 lines
319 B
Go
package ruler
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
)
|
|
|
|
type Config struct {
|
|
}
|
|
|
|
func NewConfigFactory() factory.ConfigFactory {
|
|
return factory.NewConfigFactory(factory.MustNewName("ruler"), newConfig)
|
|
}
|
|
|
|
func newConfig() factory.Config {
|
|
return Config{}
|
|
}
|
|
|
|
func (c Config) Validate() error {
|
|
return nil
|
|
}
|