summaryrefslogtreecommitdiff
path: root/internal/mapr/funcs/function.go
diff options
context:
space:
mode:
authorPaul Buetow <35781042+pbuetow@users.noreply.github.com>2020-12-27 19:46:24 +0000
committerGitHub <noreply@github.com>2020-12-27 19:46:24 +0000
commitde33db818388a6a309924f100acd6a0c603a43b3 (patch)
tree5b59cade83108c1855d07f1f869a0dcb3b9f0907 /internal/mapr/funcs/function.go
parent629e929c1fca32681c307cea12d0e7c7668add93 (diff)
parent6c7c70f02d556afebc9f995518e75ceeb68c606f (diff)
Merge pull request #16 from snonux/develop
Multiple minor enhancements.
Diffstat (limited to 'internal/mapr/funcs/function.go')
-rw-r--r--internal/mapr/funcs/function.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/mapr/funcs/function.go b/internal/mapr/funcs/function.go
index 52aaa98..1a89c3a 100644
--- a/internal/mapr/funcs/function.go
+++ b/internal/mapr/funcs/function.go
@@ -12,6 +12,7 @@ type CallbackFunc func(text string) string
type Function struct {
// Name of the callback function
Name string
+ // The Go-callback function to call for this DTail function.
call CallbackFunc
}