Initial commit of AthonetTools

This commit is contained in:
2025-08-21 12:59:43 +00:00
commit cd932b8fcb
2483 changed files with 433999 additions and 0 deletions

11
static/js/wizard/steps.js Normal file
View File

@@ -0,0 +1,11 @@
// static/js/graph/wizard/steps.js
import { mountTargetControls } from './step0_target.js';
import { mountStep2Render } from './step2_render.js';
import { mountStep3Deploy } from './step3_deploy.js';
export function mountWizard() {
mountTargetControls();
mountStep2Render();
mountStep3Deploy();
}