package vcs_test import ( "gitea.weiker.me/rodin/review-bot/gitea" "gitea.weiker.me/rodin/review-bot/vcs" ) // Compile-time assertion: the gitea.Adapter satisfies vcs.Client. // (The raw gitea.Client does NOT satisfy vcs.Client due to signature differences; // the Adapter bridges them.) var _ vcs.Client = (*gitea.Adapter)(nil)