mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
14 lines
237 B
Go
14 lines
237 B
Go
//go:build windows
|
|
|
|
package self_check
|
|
|
|
import "path/filepath"
|
|
|
|
// fix #1046
|
|
// include conf.d/*.conf
|
|
// inclde sites-enabled/*.conf
|
|
|
|
func resolvePath(path ...string) string {
|
|
return filepath.ToSlash(filepath.Join(path...) + ".conf")
|
|
}
|