12 lines
233 B
Lua
12 lines
233 B
Lua
---@diagnostic disable lowercase-global
|
|
|
|
utils = {}
|
|
|
|
function utils.Notify(msg, type)
|
|
lib.notify({
|
|
title = "GPS",
|
|
description = msg,
|
|
position = "top",
|
|
type = type or "inform",
|
|
})
|
|
end |