Files
cow/config_unix.go
2013-02-04 18:43:25 +08:00

22 lines
317 B
Go

// +build darwin freebsd linux netbsd openbsd
package main
import (
"path"
)
const (
rcFname = "rc"
alwaysBlockedFname = "blocked"
alwaysDirectFname = "direct"
statFname = "stat"
newLine = "\n"
)
func initConfigDir() {
home := getUserHomeDir()
dsFile.dir = path.Join(home, ".cow")
}