* FreeCAD addon support for Workbench and Plugins * docs: refactor docs and clean up linters, etc. * Remove mdformat * test: improve test coverage * test:Lots of general fixes * chore: more general fixes
13 lines
335 B
Python
13 lines
335 B
Python
"""FreeCAD Robust MCP Workbench - Initialization.
|
|
|
|
SPDX-License-Identifier: MIT
|
|
Copyright (c) 2025 Sean P. Kane (GitHub: spkane)
|
|
|
|
This module is executed when FreeCAD starts up. It handles non-GUI
|
|
initialization tasks for the MCP Bridge workbench.
|
|
"""
|
|
|
|
import FreeCAD
|
|
|
|
FreeCAD.Console.PrintMessage("FreeCAD Robust MCP: Init loaded\n")
|