refactor!: rename module to github.com/theirongolddev/cburn
Change module path from 'cburn' to 'github.com/theirongolddev/cburn' to enable standard Go remote installation: go install github.com/theirongolddev/cburn@latest This is a BREAKING CHANGE for any external code importing this module (though as a CLI tool, this is unlikely to affect anyone). All internal imports updated to use the new module path. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -8,8 +8,8 @@ import (
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
|
||||
"cburn/internal/source"
|
||||
"cburn/internal/store"
|
||||
"github.com/theirongolddev/cburn/internal/source"
|
||||
"github.com/theirongolddev/cburn/internal/store"
|
||||
)
|
||||
|
||||
// CachedLoadResult extends LoadResult with cache metadata.
|
||||
@@ -173,5 +173,6 @@ func CacheDir() string {
|
||||
|
||||
// CachePath returns the full path to the cache database.
|
||||
func CachePath() string {
|
||||
return filepath.Join(CacheDir(), "metrics.db")
|
||||
// v2 includes historical pricing-aware cost calculations.
|
||||
return filepath.Join(CacheDir(), "metrics_v2.db")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user