aboutsummaryrefslogtreecommitdiffstats
path: root/models/templates.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/templates.go')
-rw-r--r--models/templates.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/models/templates.go b/models/templates.go
index 54537a31..dc984fc4 100644
--- a/models/templates.go
+++ b/models/templates.go
@@ -44,3 +44,8 @@ type TemplateData interface {
PendingKeys() string
Style(string, string) string
}
+
+type Case interface {
+ Matches(string) bool
+ Value() string
+}