Преглед изворни кода

Added empty templates for JavaScript/CSS cache objects.

Taddeus Kroes пре 14 година
родитељ
комит
88d6379f2f
2 измењених фајлова са 10 додато и 0 уклоњено
  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