mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
11 lines
137 B
Lua
11 lines
137 B
Lua
local M = {}
|
|
|
|
function M:peek() end
|
|
|
|
function M:seek() end
|
|
|
|
function M:fetch() return 1 end
|
|
|
|
function M:preload() return 1 end
|
|
|
|
return M
|