WithRequiredDbVersion Set the required db version.
(c string)
| 85 | |
| 86 | // WithRequiredDbVersion Set the required db version. |
| 87 | func WithRequiredDbVersion(c string) Option { |
| 88 | return optionFunc(func(o *dependency) { |
| 89 | o.requiredDbVersion = c |
| 90 | }) |
| 91 | } |
| 92 | |
| 93 | // WithKV Set the default KV store driverold |
| 94 | func WithKV(c cache.Driver) Option { |
no test coverage detected