Implement route rules

This commit is contained in:
世界 2022-07-02 22:55:10 +08:00
parent 7c57eb70e8
commit 6eae8e361f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
40 changed files with 1220 additions and 145 deletions

17
constant/path_unix.go Normal file
View file

@ -0,0 +1,17 @@
//go:build unix
package constant
import (
"os"
)
func init() {
resourcePaths = append(resourcePaths, "/etc/config")
resourcePaths = append(resourcePaths, "/usr/share")
resourcePaths = append(resourcePaths, "/usr/local/etc/config")
resourcePaths = append(resourcePaths, "/usr/local/share")
if homeDir := os.Getenv("HOME"); homeDir != "" {
resourcePaths = append(resourcePaths, homeDir+"/.local/share")
}
}