1 package main 2 3 import ( 4 "git.mleku.dev/mleku/dendrite/pkg/detect" 5 ) 6 7 // Detector wraps the shared detect package for use in sentry. 8 // This thin wrapper preserves the existing sentry API surface. 9 type Detector = detect.Detector 10 11 // NewDetector creates a detector from trained mindsicles. 12 var NewDetector = detect.NewDetector 13