15 lines
381 B
Go
15 lines
381 B
Go
package barrel
|
|
|
|
import (
|
|
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient/locker"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient/mstore"
|
|
)
|
|
|
|
// Barrel provides access to the underlying Barrel
|
|
type Barrel struct {
|
|
ingredient.Base
|
|
|
|
Locker *locker.Locker
|
|
MStore *mstore.MStore
|
|
}
|