From 1ac51669ed1b2da07c0b2f322ba38f92b9797488 Mon Sep 17 00:00:00 2001 From: claw Date: Tue, 12 May 2026 10:05:39 -0700 Subject: [PATCH] docs(vcs): add package doc to interfaces.go --- vcs/interfaces.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vcs/interfaces.go b/vcs/interfaces.go index 62642f1..ecada13 100644 --- a/vcs/interfaces.go +++ b/vcs/interfaces.go @@ -1,3 +1,6 @@ +// Package vcs defines the shared VCS client interface and supporting types. +// Platform adapters (gitea, github) implement these interfaces so the core +// review logic can work with any VCS platform without platform-specific code. package vcs import "context"