From 0b253bb373b81e2cfbe61b75b668bff67a64a085 Mon Sep 17 00:00:00 2001 From: yupix Date: Sat, 28 May 2022 20:24:34 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Config=E3=82=AF=E3=83=A9=E3=82=B9?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0=20issue=20#6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mipac/config.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mipac/config.py diff --git a/mipac/config.py b/mipac/config.py new file mode 100644 index 0000000..098f0e1 --- /dev/null +++ b/mipac/config.py @@ -0,0 +1,4 @@ +class Config: + def __init__(self, is_ayuskey: bool = False) -> None: + self.is_ayuskey: bool = is_ayuskey + \ No newline at end of file