Added missing import
This commit is contained in:
parent
de5f413ae3
commit
ccb1ea29ac
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
--[[
|
||||
LuCI - UCI mpdel
|
||||
LuCI - UCI model
|
||||
|
||||
Description:
|
||||
Generalized UCI model
|
||||
|
@ -23,10 +23,12 @@ See the License for the specific language governing permissions and
|
|||
limitations under the License.
|
||||
|
||||
]]--
|
||||
local os = require "os"
|
||||
local uci = require "uci2"
|
||||
local util = require "luci.util"
|
||||
local table = require "table"
|
||||
|
||||
|
||||
local setmetatable, rawget, rawset = setmetatable, rawget, rawset
|
||||
local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring
|
||||
local require, getmetatable = require, getmetatable
|
||||
|
|
Loading…
Reference in a new issue