Skip to content

Commit

Permalink
feat: Adding dng extension as image
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Nov 7, 2023
1 parent c316816 commit 7b7298f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
AudioExtensions = map[string]bool{".mp3": true}
CodeExtensions = map[string]bool{".html": true, ".css": true, ".js": true, ".jsx": true, ".json": true, ".yml": true, ".yaml": true, ".toml": true, ".md": true, ".go": true, ".py": true, ".java": true, ".xml": true}
ExcelExtensions = map[string]bool{".xls": true, ".xlsx": true, ".xlsm": true}
ImageExtensions = map[string]bool{".jpg": true, ".jpeg": true, ".png": true, ".gif": true, ".svg": true, ".tiff": true, ".webp": true, ".heic": true}
ImageExtensions = map[string]bool{".jpg": true, ".jpeg": true, ".png": true, ".gif": true, ".svg": true, ".tiff": true, ".webp": true, ".heic": true, ".dng": true}
PdfExtensions = map[string]bool{".pdf": true}
VideoExtensions = map[string]string{".mp4": "video/mp4", ".mov": "video/mp4", ".avi": "video/x-msvideo", ".ogg": "video/ogg", ".mkv": "video/x-matroska"}
StreamExtensions = map[string]bool{".ts": true}
Expand Down

0 comments on commit 7b7298f

Please sign in to comment.