aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/templating/Command.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/src/main/kotlin/templating/Command.kt')
-rw-r--r--plugins/base/src/main/kotlin/templating/Command.kt4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/base/src/main/kotlin/templating/Command.kt b/plugins/base/src/main/kotlin/templating/Command.kt
index e352ba32..0b998dee 100644
--- a/plugins/base/src/main/kotlin/templating/Command.kt
+++ b/plugins/base/src/main/kotlin/templating/Command.kt
@@ -7,3 +7,7 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo.Id.CLASS
@JsonTypeInfo(use= CLASS)
interface Command
+
+abstract class SubstitutionCommand: Command {
+ abstract val pattern: String
+}