Browse Source

Add constants

StrayWarrior 6 months ago
parent
commit
2a6fd7d8c1
1 changed files with 14 additions and 0 deletions
  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