mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
15 lines
313 B
Go
15 lines
313 B
Go
// Package db defines the ability to create a new database
|
|
// for an eth2 beacon node.
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
)
|
|
|
|
// NewDB initializes a new DB.
|
|
func NewDB(ctx context.Context, dirPath string) (Database, error) {
|
|
return kv.NewKVStore(ctx, dirPath)
|
|
}
|