#!/usr/bin/python3

# Make sure the python library can be loaded.
# This is a simple smoke test for the Debian autopkgtest

import freecad_mcp.server

if not getattr(freecad_mcp.server, "main"):
    print("error: failed to find main attribute in freecad_mcp.server")
    exit(1)
else:
    print("success: fond main attribute in freecad_mcp.server")
    exit(0)
