Skip to content

Commit

Permalink
Fix trello api output functions (#1673)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccuser44 authored Nov 13, 2024
1 parent 3f5589a commit 241cf59
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions MainModule/Server/Dependencies/TrelloAPI.luau
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
-- Trello API Documentation: --
-- --
-- App Key Link: /app-key --
-- --
-- Token Link: /1/connect?name=Trello_API_Module&response_type=token&expires=never&scope=read,write&key=YOUR_APP_KEY_HERE --
-- Replace "YOUR_APP_KEY_HERE" with the App Key from /app-key --
-- Trello API Remade by imskyyc for Kronos and Adonis - original by Sceleratis / Davey_Bones for Adonis. --
-- Trello API Documentation: --
-- --
-- App Key Link: /app-key --
-- --
-- Token Link: /1/connect?name=Trello_API_Module&response_type=token&expires=never&scope=read,write&key=YOUR_APP_KEY_HERE --
-- Replace "YOUR_APP_KEY_HERE" with the App Key from /app-key --
-- Trello API Remade by imskyyc for Kronos and Adonis - original by Sceleratis / Davey_Bones for Adonis. --
-- It is requested that existing credits remain here. --
-------------------------------------------------------------------------------------------------------------------------------------------------------------------

local print = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: INFO: {v}`) end end
local error = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: ERROR: {v}`) end end
local warn = function(...) for i,v in {...} do warn(`[Adonis TrelloAPI]: WARN: {v}`) end end
local print = function(...) warn("[Adonis TrelloAPI]: INFO:", ...) end
local warn = function(...) warn("[Adonis TrelloAPI]: WARN:", ...) end
local error = function(message, level) warn("[Adonis TrelloAPI]: ERROR:", message) return error("[Adonis TrelloAPI]: ERROR:"..message, level == 0 and 0 or 1 + (level or 1)) end

local HttpService = game:GetService("HttpService")
local Weeks = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
Expand Down

0 comments on commit 241cf59

Please sign in to comment.