Code refactoring.

Added files with functions for various OS (//go:build windows, //go:build !windows).
This commit is contained in:
2024-01-23 21:33:01 +06:00
parent 7cc22e1553
commit adf9bc9c27
8 changed files with 47 additions and 13 deletions

View File

@@ -0,0 +1,8 @@
//go:build !windows
// +build !windows
package helper
func PathSeparator() string {
return "/"
}