package mdb import ( "path/filepath" ) func pageFilePath(rootDir string) string { return filepath.Join(rootDir, "pagefile") } func repDirPath(rootDir string) string { return filepath.Join(rootDir, "rep") }