|
package integration
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
"kra/internal/integration/runtimeconfig"
|
|
)
|
|
|
|
// Provider is the minimal database/runtime seam for integration configuration.
|
|
type Provider interface {
|
|
DB() *gorm.DB
|
|
IntegrationRuntime() *runtimeconfig.Store
|
|
}
|