summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xnt/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/xnt/__init__.py b/xnt/__init__.py
index e69de29..14d4c4d 100644
--- a/xnt/__init__.py
+++ b/xnt/__init__.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+def target(fn):
+ def wrap():
+ print(fn.__name__ + ":")
+ return fn()
+ return wrap