Hansome 2 mēneši atpakaļ
vecāks
revīzija
4df3a0a4cb
1 mainītis faili ar 15 papildinājumiem un 0 dzēšanām
  1. 15 0
      test.py

+ 15 - 0
test.py

@@ -0,0 +1,15 @@
+from verctrl import *
+
+
+class TestVerCtrl(VerCtrl):
+    def before(self):
+        print("开始发布...")
+        
+    def after(self):
+        print("发布完成!")
+
+
+if __name__ == '__main__':
+    
+    vc = TestVerCtrl('config.json')
+    vc.test_version()