Pipeline.js 130 B

12345678910111213
  1. class Pipeline {
  2. constructor( cacheKey ) {
  3. this.cacheKey = cacheKey;
  4. this.usedTimes = 0;
  5. }
  6. }
  7. export default Pipeline;