initial commit

This commit is contained in:
Gitea
2020-11-13 14:13:12 -05:00
commit 05df49ff60
368 changed files with 128754 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
-- ------------------------------------------------------------------------------ --
-- TradeSkillMaster --
-- https://tradeskillmaster.com --
-- All Rights Reserved - Detailed license information included with addon. --
-- ------------------------------------------------------------------------------ --
local _, TSM = ...
local FailedAuctions = TSM.MainUI.Ledger:NewPackage("FailedAuctions")
local L = TSM.Include("Locale").GetTable()
-- ============================================================================
-- Module Functions
-- ============================================================================
function FailedAuctions.OnInitialize()
TSM.MainUI.Ledger.RegisterPage(L["Failed Auctions"])
end
function FailedAuctions.RegisterPage(name, callback)
TSM.MainUI.Ledger.RegisterChildPage(L["Failed Auctions"], name, callback)
end