github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/internal/tokens/handle_decache.go (about) 1 // Copyright 2021 The TrueBlocks Authors. All rights reserved. 2 // Use of this source code is governed by a license that can 3 // be found in the LICENSE file. 4 5 package tokensPkg 6 7 import ( 8 "github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/logger" 9 "github.com/TrueBlocks/trueblocks-core/src/apps/chifra/pkg/output" 10 ) 11 12 func (opts *TokensOptions) HandleDecache(rCtx *output.RenderCtx) error { 13 // TODO: decache.Decache --decache not implemented 14 logger.Error("chifra tokens --decache is not yet implemented") 15 return nil 16 }