summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cedar.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cedar.go b/cedar.go
index 5bc50ff..3346fb7 100644
--- a/cedar.go
+++ b/cedar.go
@@ -134,4 +134,10 @@ func (entry Entry) in(cache Ids) bool {
return false
}
+func (entry Entry) email() error {
+ // Dummy for now.
+ fmt.Printf("Mailing %v...\n", entry.Id)
+ return nil
+}
+
func main() {}