Skip to content

Instantly share code, notes, and snippets.

@andersevenrud
Created May 17, 2016 16:16
Show Gist options
  • Save andersevenrud/5704043e4de4da21453f6b7beb05f899 to your computer and use it in GitHub Desktop.
Save andersevenrud/5704043e4de4da21453f6b7beb05f899 to your computer and use it in GitHub Desktop.
OS.js Application API Lua boilerplate
#!/usr/bin/lua
--
-- This is a OS.js Application API example for Lua
--
local function request(m, a, request, response)
local result = false
-- error, result
return false, result
end
return {
request = request
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment