File: op.ws

package info (click to toggle)
lua-orbit 2.2.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,956 kB
  • sloc: javascript: 2,216; sql: 78; sh: 32; makefile: 31; xml: 20
file content (11 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
-- Orbit pages launcher, extracts script to launch

local common = require "wsapi.common"

local function op_loader(wsapi_env)
  common.normalize_paths(wsapi_env, nil, "op.ws")
  local app = wsapi.common.load_isolated_launcher(wsapi_env.PATH_TRANSLATED, "orbit.pages")
  return app(wsapi_env)
end 

return op_loader