7d78e65d0c
Add semantic versioning to all services * working * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver * 1.24 mod * go upgrade * tool * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver
10 lines
268 B
Go
10 lines
268 B
Go
package pathlib
|
|
|
|
import "os"
|
|
|
|
// DefaultFileMode is the file mode that will be applied to new pathlib files
|
|
var DefaultFileMode = os.FileMode(0o644)
|
|
|
|
// DefaultDirMode is the default mode that will be applied to new directories
|
|
var DefaultDirMode = os.FileMode(0o755)
|