Index: service/datastore/interface.go |
diff --git a/service/datastore/interface.go b/service/datastore/interface.go |
index a01c219f6e546371687e33f5fd6ce0066668e9e7..33b1f0f2269d5bcc03f4d84c108af86c3725a17b 100644 |
--- a/service/datastore/interface.go |
+++ b/service/datastore/interface.go |
@@ -142,6 +142,10 @@ type Interface interface { |
// DeleteMulti removes items from the datastore. |
DeleteMulti(keys []Key) error |
+ // Testable returns the Testable interface for the implementation, or nil if |
+ // there is none. |
+ Testable() Testable |
Vadim Sh.
2015/09/14 18:16:18
I've just added it to interface definition and it
|
+ |
// Raw returns the underlying RawInterface. The Interface and RawInterface may |
// be used interchangably; there's no danger of interleaving access to the |
// datastore via the two. |