feat: Data and client framework

This commit is contained in:
2026-05-31 05:05:01 +10:00
parent 19da69b3e8
commit b188abcad0
18 changed files with 643 additions and 313 deletions
+9
View File
@@ -0,0 +1,9 @@
class CommandError(Exception):
def __init__(self, msg=None, **kwargs):
super().__init__(**kwargs)
self.msg = msg
class CommandValueError(CommandError):
pass