Browse Source

添加test.py

Hansome 2 tháng trước cách đây
mục cha
commit
4df3a0a4cb
1 tập tin đã thay đổi với 15 bổ sung0 xóa
  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()