mirror of
https://github.com/araxiaonline/wow-market-place-miner.git
synced 2026-06-13 03:32:19 -04:00
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { merge } from "lodash";
|
|
import { minePricing } from "./data-miners/minePriceNexus";
|
|
|
|
import recipes from "./items/blacksmith-recipes.json";
|
|
|
|
(async () => {
|
|
await minePricing(recipes, './sql/acore_world/mp_mine_smithing_nexus.sql');
|
|
})();
|
|
|