mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
14 lines
299 B
Go
14 lines
299 B
Go
|
package filesystem
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// RunUpMigrations only exists to satisfy the interface.
|
||
|
func (*Store) RunUpMigrations(_ context.Context) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// RunDownMigrations only exists to satisfy the interface.
|
||
|
func (*Store) RunDownMigrations(_ context.Context) error {
|
||
|
return nil
|
||
|
}
|