blob: 2e1b2145f0c8c57728e559b0d9fb5b0e32921966 [file] [log] [blame]
package fs
import (
"v.io/core/veyron2/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
}