Fixed glob import
All checks were successful
Lint / pre-commit Linting (push) Successful in 51s

This commit is contained in:
2025-04-21 20:58:31 +02:00
parent 318515b9c4
commit 59cf917920

View File

@ -1,7 +1,7 @@
const { ScreepsAPI } = require("screeps-api"); const { ScreepsAPI } = require("screeps-api");
const core = require("@actions/core"); const core = require("@actions/core");
const fs = require("fs"); const fs = require("fs");
const glob = require("glob"); const { glob } = require("glob");
const path = require("path"); const path = require("path");
/** /**