================= DevCacheConfig ================= //
| 94 | // ================= DevCacheConfig ================= // |
| 95 | |
| 96 | type DevCacheConfig struct { |
| 97 | ctx context.Context |
| 98 | devArtifactCache *pkgcache.DevArtifactCache |
| 99 | } |
| 100 | |
| 101 | func NewDevCacheConfig(ctx context.Context) *DevCacheConfig { |
| 102 | cacheConfig := DevCacheConfig{ctx: ctx} |
nothing calls this directly
no outgoing calls
no test coverage detected