mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
8 lines
254 B
Go
8 lines
254 B
Go
|
package db
|
||
|
|
||
|
import "github.com/prysmaticlabs/prysm/beacon-chain/db/iface"
|
||
|
|
||
|
// Database defines the necessary methods for Prysm's eth2 backend which may
|
||
|
// be implemented by any key-value or relational database in practice.
|
||
|
type Database = iface.Database
|