-- Compiled with roblox-ts v1.3.3
local TS = _G[script]
local DatalinkService = TS.import(script, script.Parent.Parent.Parent.Parent)
local authenticationTest
do
	authenticationTest = setmetatable({}, {
		__tostring = function()
			return "authenticationTest"
		end,
	})
	authenticationTest.__index = authenticationTest
	function authenticationTest.new(...)
		local self = setmetatable({}, authenticationTest)
		return self:constructor(...) or self
	end
	function authenticationTest:constructor()
	end
	function authenticationTest:run(id, key)
		return DatalinkService:Initialize(id, key)
	end
end
return {
	authenticationTest = authenticationTest,
}
