github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/internal/chunks/handle_publish.go (about)

     1  package chunksPkg
     2  
     3  import (
     4  	"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/base"
     5  	"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/output"
     6  	"github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/validate"
     7  )
     8  
     9  func (opts *ChunksOptions) HandlePublish(rCtx *output.RenderCtx, blockNums []base.Blknum) error {
    10  	return validate.Usage("Handler for {0} --publish not yet implemented.", opts.Mode)
    11  }