1
Fork 0
photoview/api/scanner/face_detection/face_detector_shim.go

15 lines
208 B
Go

//go:build no_face_detection
package face_detection
import (
"log"
"gorm.io/gorm"
)
func InitializeFaceDetector(db *gorm.DB) error {
log.Printf("Face detection disabled (at build-time)")
return nil
}