소스 검색

Add constants

StrayWarrior 8 달 전
부모
커밋
2a6fd7d8c1
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      constants.py

+ 14 - 0
constants.py

@@ -0,0 +1,14 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+# vim:fenc=utf-8
+
+"""
+Constant values.
+"""
+
+from enum import Enum
+
+class AutoReplyAccountType(Enum):
+    SELF_OWNED_GZH = 1
+    EXTERNAL_GZH = 2
+    SELF_OWNED_QYWX = 3