summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-09-19 00:36:32 -0400
committerrsiddharth <s@ricketyspace.net>2020-09-19 00:36:32 -0400
commit4297908fc8806b1aa0af5f2d3469a8f2c6832e46 (patch)
tree824208d014ef30c77c6cc0bcb7818eb03ad74d8c
parentaf0654c8cbbd25a56f4a5ae6fed8ddb275413ec7 (diff)
cedar.go: add Ids.save
-rw-r--r--cedar.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cedar.go b/cedar.go
index 2dfc058..0c20788 100644
--- a/cedar.go
+++ b/cedar.go
@@ -120,4 +120,9 @@ func (cache *Ids) add(entry Entry) {
*cache = c
}
+func (cache Ids) save() error {
+ // Dummy for now.
+ return nil
+}
+
func main() {}