github.com/MetalBlockchain/metalgo@v1.11.9/vms/avm/health.go (about)

     1  // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
     2  // See the file LICENSE for licensing terms.
     3  
     4  package avm
     5  
     6  import "context"
     7  
     8  // TODO: add health checks
     9  func (*VM) HealthCheck(context.Context) (interface{}, error) {
    10  	return nil, nil
    11  }