14 lines
130 B
JavaScript
14 lines
130 B
JavaScript
|
|
class Pipeline {
|
||
|
|
|
||
|
|
constructor( cacheKey ) {
|
||
|
|
|
||
|
|
this.cacheKey = cacheKey;
|
||
|
|
|
||
|
|
this.usedTimes = 0;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Pipeline;
|