1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 09:50:05 +08:00
SpaceVim/bundle/format.nvim/lua/format/util.lua
2024-04-16 11:27:49 +08:00

15 lines
220 B
Lua

local M = {}
local nt = require('spacevim.api.notify')
local log = require('spacevim.logger').derive('format')
function M.msg(msg)
nt.notify(msg)
end
function M.info(msg)
log.info(msg)
end
return M