This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
233 B
Lua
Raw Permalink Normal View History

2025-03-17 13:54:06 +01:00
---@diagnostic disable lowercase-global
utils = {}
function utils.Notify(msg, type)
lib.notify({
title = "GPS",
description = msg,
position = "top",
type = type or "inform",
})
end