mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00
20 lines
331 B
Go
20 lines
331 B
Go
package sqlmigration
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
)
|
|
|
|
type Config struct{}
|
|
|
|
func NewConfigFactory() factory.ConfigFactory {
|
|
return factory.NewConfigFactory(factory.MustNewName("sqlmigration"), newConfig)
|
|
}
|
|
|
|
func newConfig() factory.Config {
|
|
return Config{}
|
|
}
|
|
|
|
func (c Config) Validate() error {
|
|
return nil
|
|
}
|