Coverage for mcpgateway / plugins / framework / external / unix / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 03:05 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 03:05 +0000
1# -*- coding: utf-8 -*-
2"""Location: ./mcpgateway/plugins/framework/external/unix/__init__.py
3Copyright 2025
4SPDX-License-Identifier: Apache-2.0
5Authors: Teryl Taylor
7Raw Unix socket transport for external plugins.
9This transport provides high-performance IPC for local plugins using
10length-prefixed protobuf messages over Unix domain sockets.
11"""
13from mcpgateway.plugins.framework.external.unix.client import UnixSocketExternalPlugin
15__all__ = ["UnixSocketExternalPlugin"]