14 lines
212 B
Go
14 lines
212 B
Go
|
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")
|
||
|
}
|