github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/pkg/cache/locations/stat.go (about)

     1  package locations
     2  
     3  type ItemInfo struct {
     4  	fileSize int
     5  	name     string
     6  }
     7  
     8  func (s *ItemInfo) Size() int {
     9  	return s.fileSize
    10  }
    11  
    12  func (s *ItemInfo) Name() string {
    13  	return s.name
    14  }