github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/libfuse/common.go (about) 1 // Copyright 2016 Keybase Inc. All rights reserved. 2 // Use of this source code is governed by a BSD 3 // license that can be found in the LICENSE file. 4 // 5 //go:build !windows 6 // +build !windows 7 8 package libfuse 9 10 const ( 11 // PublicName is the name of the parent of all public top-level folders. 12 PublicName = "public" 13 14 // PrivateName is the name of the parent of all private top-level folders. 15 PrivateName = "private" 16 17 // TeamName is the name of the parent of all team top-level folders. 18 TeamName = "team" 19 20 // CtxOpID is the display name for the unique operation FUSE ID tag. 21 CtxOpID = "FID" 22 ) 23 24 // CtxTagKey is the type used for unique context tags 25 type CtxTagKey int 26 27 const ( 28 // CtxIDKey is the type of the tag for unique operation IDs. 29 CtxIDKey CtxTagKey = iota 30 )