chyezh b9237280c2
enhance: wal interface definition (#33745)
issue: #33285

---------

Signed-off-by: chyezh <chyezh@outlook.com>
2024-06-24 10:34:12 +08:00

11 lines
272 B
Go

package walimpls
// OpenerBuilderImpls is the interface for building wal opener impls.
type OpenerBuilderImpls interface {
// Name of the wal builder, should be a lowercase string.
Name() string
// Build build a opener impls instance.
Build() (OpenerImpls, error)
}