This website works better with JavaScript
Home
Explore
Help
Sign In
taddeus
/
webcache
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Added empty templates for JavaScript/CSS cache objects.
Taddeus Kroes
14 years ago
parent
bd10e62e94
commit
88d6379f2f
2 changed files
with
10 additions
and
0 deletions
Split View
Show Diff Stats
5
0
css.py
5
0
js.py
+ 5
- 0
css.py
View File
@@ -0,0 +1,5 @@
+from cache import Cache
+
+
+class CssCache(Cache):
+ pass
+ 5
- 0
js.py
View File
@@ -0,0 +1,5 @@
+from cache import Cache
+
+
+class JsCache(Cache):
+ pass