From 72c62c709bf623b23be689eba939e944225eddf5 Mon Sep 17 00:00:00 2001 From: Rob Findley Date: Tue, 21 Oct 2025 13:54:11 +0000 Subject: [PATCH] oauthex: add missing build tag The file oauthex/oauthex.go was missing the mcp_go_client_oauth build tag, making the package importable. I believe that was accidental. --- oauthex/oauthex.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oauthex/oauthex.go b/oauthex/oauthex.go index 34ed55b5..d843f2e2 100644 --- a/oauthex/oauthex.go +++ b/oauthex/oauthex.go @@ -2,6 +2,8 @@ // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE file. +//go:build mcp_go_client_oauth + // Package oauthex implements extensions to OAuth2. package oauthex