10 lines
141 B
Go
10 lines
141 B
Go
package scan
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func isPDF(path string) bool {
|
|
return strings.ToLower(filepath.Ext(path)) == pdfExt
|
|
}
|