fix: add missing files

This commit is contained in:
yetone 2024-08-15 11:15:16 +08:00
parent 505fd39151
commit ba10a2ac3e
No known key found for this signature in database
GPG Key ID: 222BA52B342D52AA

7
lua/avante/utils.lua Normal file
View File

@ -0,0 +1,7 @@
local M = {}
function M.trim_suffix(str, suffix)
return string.gsub(str, suffix .. "$", "")
end
return M