27 lines
406 B
Lua
27 lines
406 B
Lua
|
|
-- create the module's table
|
|
local blank = {}
|
|
|
|
-- import required modules
|
|
local dict = require "scripts.app.dict"
|
|
|
|
-- file constants
|
|
|
|
-- local functions
|
|
local function func()
|
|
|
|
end
|
|
|
|
|
|
-- global variables so other modules can use them
|
|
|
|
|
|
-- call functions desired to run when script is called/imported
|
|
|
|
|
|
-- functions other modules are able to call
|
|
blank.func = func
|
|
|
|
-- return the module's table
|
|
return blank
|