src/ztfy/myams/tal/interfaces.py
changeset 0 8a19e25e39e4
child 101 8364fb15bfe5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ztfy/myams/tal/interfaces.py	Wed May 07 10:36:24 2014 +0200
@@ -0,0 +1,29 @@
+#
+# Copyright (c) 2012 Thierry Florac <tflorac AT onf.fr>
+# All Rights Reserved.
+#
+
+
+# import standard packages
+
+# import Zope3 interfaces
+
+# import local interfaces
+
+# import Zope3 packages
+from zope.interface import Interface
+
+# import local packages
+
+
+class IMyAMSTalesAPI(Interface):
+    """myams: TALES namespace interface"""
+
+    def data(self):
+        """Get context data"""
+
+    def configuration(self):
+        """Get application configuration"""
+
+    def resources(self):
+        """Include application's Fanstatic resources"""