github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/pkg/model/v1alpha1/debug.go (about)

     1  package v1alpha1
     2  
     3  type DebugInfoProvider interface {
     4  	GetDebugInfo() (DebugInfo, error)
     5  }
     6  
     7  type DebugInfo struct {
     8  	Component string `json:"component"`
     9  	Info      string `json:"info"`
    10  }