aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/chigopher/pathlib/vars.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-05-08 14:17:02 +0200
committerTaras Madan <tarasmadan@google.com>2024-05-08 12:48:31 +0000
commit0ac372459159c5632ae7ce9778e9be771708a9b3 (patch)
tree9c6a979cada5c22b46dd3c5ad4b0d706f2252272 /vendor/github.com/chigopher/pathlib/vars.go
parent69141a688b25b2d33daf570507dbb13a3c80e5d9 (diff)
vendor: go mod vendor
We don't want to download mockery every time.
Diffstat (limited to 'vendor/github.com/chigopher/pathlib/vars.go')
-rw-r--r--vendor/github.com/chigopher/pathlib/vars.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/chigopher/pathlib/vars.go b/vendor/github.com/chigopher/pathlib/vars.go
new file mode 100644
index 000000000..138eba428
--- /dev/null
+++ b/vendor/github.com/chigopher/pathlib/vars.go
@@ -0,0 +1,9 @@
+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)