summaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools.go b/tools.go
index 39c6063..210ce9c 100644
--- a/tools.go
+++ b/tools.go
@@ -107,7 +107,8 @@ func recall(args ...string) []byte {
logger.Error(msg)
return []byte(msg)
}
- return []byte(mind)
+ answer := fmt.Sprintf("under the topic: %s is stored:\n%s", args[0], mind)
+ return []byte(answer)
}
func recallTopics(args ...string) []byte {