summaryrefslogtreecommitdiffstats
path: root/acf/persistence/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'acf/persistence/util.lua')
-rw-r--r--acf/persistence/util.lua12
1 files changed, 7 insertions, 5 deletions
diff --git a/acf/persistence/util.lua b/acf/persistence/util.lua
index 46de5eb..a657411 100644
--- a/acf/persistence/util.lua
+++ b/acf/persistence/util.lua
@@ -1,20 +1,22 @@
--[[
-Copyright (c) 2012 Kaarle Ritvanen
+Copyright (c) 2012-2013 Kaarle Ritvanen
See LICENSE file for license details
--]]
-module(..., package.seeall)
+local M = {}
-function open_file(path, mode)
+function M.open_file(path, mode)
local file = io.open(path, mode)
if not file then error('Cannot open file: '..path) end
return file
end
-function read_file(path)
- local file = open_file(path)
+function M.read_file(path)
+ local file = M.open_file(path)
local data = ''
for line in file:lines() do data = data..line end
file:close()
return data
end
+
+return M