This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
taddeus
/
webcache
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ソースを参照
Added empty templates for JavaScript/CSS cache objects.
Taddeus Kroes
14 年 前
親
bd10e62e94
コミット
88d6379f2f
2 ファイル変更
、
10 行追加
、
0 行削除
分割表示
差分情報を表示
5
0
css.py
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