mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 18:50:05 +08:00
15 lines
220 B
Lua
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
|