mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
12 lines
342 B
Lua
12 lines
342 B
Lua
local function fetch(_, job)
|
|
ya.notify {
|
|
title = "Deprecated plugin",
|
|
content = "The `mime` fetcher is deprecated, use `mime.local` instead in your `yazi.toml`\n\nSee https://github.com/sxyazi/yazi/pull/3222 for more details.",
|
|
timeout = 15,
|
|
level = "warn",
|
|
}
|
|
|
|
return require("mime.local"):fetch(job)
|
|
end
|
|
|
|
return { fetch = fetch }
|