MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / _arch

Function _arch

pkg/pypi/src/codebase_memory_mcp/_cli.py:128–134  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

126
127
128def _arch() -> str:
129 m = platform.machine().lower()
130 if m in ("arm64", "aarch64"):
131 return "arm64"
132 if m in ("x86_64", "amd64"):
133 return "amd64"
134 sys.exit(f"codebase-memory-mcp: unsupported architecture: {m}")
135
136
137def _cache_dir() -> Path:

Callers 1

_downloadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected