github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/libfs/context.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  package libfs
     6  
     7  // CtxAppIDType is the type used for the app ID context tag
     8  type CtxAppIDType int
     9  
    10  const (
    11  	// CtxAppIDKey is the context app id
    12  	CtxAppIDKey CtxAppIDType = iota
    13  )