1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 17:55:41 +08:00
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