summaryrefslogtreecommitdiff
path: root/src/bind/LispBinding.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/bind/LispBinding.kt')
-rw-r--r--src/bind/LispBinding.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bind/LispBinding.kt b/src/bind/LispBinding.kt
new file mode 100644
index 0000000..7af0e67
--- /dev/null
+++ b/src/bind/LispBinding.kt
@@ -0,0 +1,7 @@
+package moe.nea.lisp.bind
+
+@Retention(AnnotationRetention.RUNTIME)
+@Target(AnnotationTarget.FIELD, AnnotationTarget.FUNCTION)
+annotation class LispBinding(
+ val name: String,
+)