This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local DEG_ADDON = _G["DEG_CURRENT_ADDON"] | |
local function d(msg) | |
_G[DEG_ADDON.PACKAGE_NAME].plugins[DEG_ADDON.ADDON_NAME_SHORT]:d(msg) | |
end | |
local function ts(...) | |
return tostring(...) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local MAJOR, MINOR = "LibSafe", 1.005 | |
local LibSafe, oldminor = LibStub:NewLibrary(MAJOR, MINOR) | |
if not LibSafe then return end | |
LibSafe.addonName = "" | |
LibSafe.addonTable = nil | |
LibSafe.savedVariablesName = nil | |
LibSafe.savedVariables = nil | |
LibSafe.isDeveloper = false |