github.com/MetalBlockchain/metalgo@v1.11.9/snow/engine/common/bootstrapable.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package common
     5  
     6  import "context"
     7  
     8  type BootstrapableEngine interface {
     9  	Engine
    10  
    11  	// Clear removes all containers to be processed upon bootstrapping
    12  	Clear(ctx context.Context) error
    13  }