16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
--!strict
|
|
local BaseUrl = require "../Modules/BaseUrl"
|
|
local path = BaseUrl.path
|
|
|
|
local Load = {}
|
|
|
|
function Load.Help()
|
|
print "Call Load.Start with a ticket to start a game server!"
|
|
end
|
|
|
|
function Load.Start(ticket: string)
|
|
dofile(path "game/host?ticket=" .. ticket)
|
|
end
|
|
|
|
return Load
|