summaryrefslogtreecommitdiffstats
path: root/loadingdemo-controller.lua
blob: d259d2c1fe701326a63c724c055980089c386dc9 (plain)
1
2
3
4
5
6
7
8
9
10
module(..., package.seeall)

default_action = "read"

function read(self)
	local versioncontroller = self:new("alpine-baselayout/alpineversion")
	local versionresult = versioncontroller:read()
	versioncontroller:destroy()
	return cfe({ value="I called alpineversion:read(), and you are running version "..versionresult.value, label="Alpine version"  })
end