From 2aee70c24ecf4bdba0cfc67ff26a0f7d7e6d2e06 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 15 Feb 2025 05:33:47 -0600 Subject: [PATCH] also put CC on .proto files --- doWITCOM.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doWITCOM.go b/doWITCOM.go index c5e8ddc..c68408a 100644 --- a/doWITCOM.go +++ b/doWITCOM.go @@ -103,6 +103,9 @@ func scanForGoFiles(startDir string) ([]string, error) { if strings.HasSuffix(path, ".go") { files = append(files, path) } + if strings.HasSuffix(path, ".proto") { + files = append(files, path) + } // don't go into any directories if info.IsDir() {