package github_test import ( "gitea.weiker.me/rodin/review-bot/github" "gitea.weiker.me/rodin/review-bot/vcs" ) // Compile-time interface conformance assertions. // These verify github.Client satisfies vcs.PRReader and vcs.FileReader. var ( _ vcs.PRReader = (*github.Client)(nil) _ vcs.FileReader = (*github.Client)(nil) )