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

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