summaryrefslogtreecommitdiff
path: root/channel.lua
diff options
context:
space:
mode:
Diffstat (limited to 'channel.lua')
-rw-r--r--channel.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/channel.lua b/channel.lua
deleted file mode 100644
index e908069..0000000
--- a/channel.lua
+++ /dev/null
@@ -1,15 +0,0 @@
--- channel descriptor
-
-local Channel = {}
-function Channel.make(pylon, descriptor)
- return setmetatable({pylon=pylon, descriptor=descriptor}, Channel)
-end
-function Channel.__eq(self, other)
- return self.pylon == other.pylon and self.descriptor == other.descriptor
-end
-function Channel.__call(_, ...) return Channel.make(...) end
-function Channel.__tostring(self)
- return self.pylon.name .. ':' .. self.descriptor
-end
-setmetatable(Channel, Channel)
-return Channel