blob: a4f57dbcc0a45d81dd5640d7c2a549f0fe0f17c6 [file] [log] [blame]
package fs
import (
"v.io/v23/naming"
)
// TP is a convenience function. It prepends the transactionNamePrefix
// to the given path.
func TP(path string) string {
return naming.Join(transactionNamePrefix, path)
}
func (ms *Memstore) PersistedFile() string {
return ms.persistedFile
}