mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-24 09:12:43 +03:00
10 lines
104 B
Lua
10 lines
104 B
Lua
|
local M = {}
|
||
|
|
||
|
function M:peek() end
|
||
|
|
||
|
function M:seek() end
|
||
|
|
||
|
function M:preload() return 1 end
|
||
|
|
||
|
return M
|