From 5dea96ad915692e9abbc0620930756c51c256179 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Thu, 27 Feb 2025 23:23:57 +0000 Subject: restructure, refactor, a bit --- util/channel.lua | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 util/channel.lua (limited to 'util/channel.lua') diff --git a/util/channel.lua b/util/channel.lua deleted file mode 100644 index e908069..0000000 --- a/util/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 -- cgit v1.2.3