blob: 47e3225b07ae1872201f5dd7dfe234cd3438d832 [file] [log] [blame]
package fs
import (
"veyron.io/veyron/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
}