mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-19 14:51:42 +03:00
12 lines
137 B
Lua
12 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
|