github.com/MetalBlockchain/metalgo@v1.11.9/utils/perms/perms.go (about) 1 // Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved. 2 // See the file LICENSE for licensing terms. 3 4 package perms 5 6 const ( 7 ReadOnly = 0o400 8 ReadWrite = 0o640 9 ReadWriteExecute = 0o750 10 )