Browse Source

Added empty templates for JavaScript/CSS cache objects.

Taddeus Kroes 14 năm trước cách đây
mục cha
commit
88d6379f2f
2 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 5 0
      css.py
  2. 5 0
      js.py

+ 5 - 0
css.py

@@ -0,0 +1,5 @@
+from cache import Cache
+
+
+class CssCache(Cache):
+    pass

+ 5 - 0
js.py

@@ -0,0 +1,5 @@
+from cache import Cache
+
+
+class JsCache(Cache):
+    pass