chore: fix class name for analyse UUID operation

This commit is contained in:
Bart van Andel 2025-04-03 14:54:49 +02:00
parent 457d28fc55
commit de5b03f854

View file

@ -4,17 +4,18 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
import Operation from "../Operation.mjs";
import * as uuid from "uuid"; import * as uuid from "uuid";
import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError.mjs"; import OperationError from "../errors/OperationError.mjs";
/** /**
* Analyse hash operation * Analyse UUID operation
*/ */
class AnalyseHash extends Operation { class AnalyseUUID extends Operation {
/** /**
* AnalyseHash constructor * AnalyseUUID constructor
*/ */
constructor() { constructor() {
super(); super();
@ -44,4 +45,4 @@ class AnalyseHash extends Operation {
} }
export default AnalyseHash; export default AnalyseUUID;