Files
2025-10-11 09:56:33 +08:00

14 lines
130 B
JavaScript

class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;