summaryrefslogtreecommitdiffstats
path: root/db-controller.lua
blob: 6aaa260d43c95f11479cda4070966cf930305c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
local mymodule = {}

mymodule.default_action = "listdatabases"

-- Use acf-db-lib to allow editing of the database
dbcontrollerfunctions = require("dbcontrollerfunctions")
for n,f in pairs(dbcontrollerfunctions) do
	mymodule[n] = f
end

return mymodule