/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/kbfs/libfuse/common.go
29 строк
752 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
// Copyright 2016 Keybase Inc. All rights reserved. // Use of this source code is governed by a BSD // license that can be found in the LICENSE file. // //go:build !windows package libfuse const ( // PublicName is the name of the parent of all public top-level folders. PublicName = "public" // PrivateName is the name of the parent of all private top-level folders. PrivateName = "private" // TeamName is the name of the parent of all team top-level folders. TeamName = "team" // CtxOpID is the display name for the unique operation FUSE ID tag. CtxOpID = "FID" ) // CtxTagKey is the type used for unique context tags type CtxTagKey int const ( // CtxIDKey is the type of the tag for unique operation IDs. CtxIDKey CtxTagKey = iota )