first iteration

This commit is contained in:
Dmitry Shibanov 2021-09-14 17:44:36 +03:00
parent 2d803e7fea
commit eaf0789850
13 changed files with 121677 additions and 7663 deletions

View file

@ -0,0 +1,13 @@
import CacheDistributor from './cache-distributor';
class PipCache extends CacheDistributor {
constructor() {
super({
command: 'pip cache dir',
patterns: ['**/requirements.txt'],
toolName: 'pip'
});
}
}
export default PipCache;