/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/service/notify_fs_request.go
50 строк
1 KB
zoom-ua
remove golang.org/x/net/context in favor of context (#28708)
17 дек 2025, 18:24
Не верифицирован
17 дек 2025, 18:24
67b0ffe
Код
Авторство
О чём код?
// Copyright 2016 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. package service import ( "context" "github.com/keybase/client/go/libkb" keybase1 "github.com/keybase/client/go/protocol/keybase1" "github.com/keybase/go-framed-msgpack-rpc/rpc" ) type notifyFSRequestHandler struct { *BaseHandler libkb.Contextified } func (h *notifyFSRequestHandler) client() (*keybase1.NotifyFSRequestClient, error) { xp := h.G().ConnectionManager.LookupByClientType(keybase1.ClientType_KBFS) if xp == nil { return nil, libkb.KBFSNotRunningError{} } return &keybase1.NotifyFSRequestClient{ Cli: rpc.NewClient(xp, libkb.NewContextifiedErrorUnwrapper(h.G()), nil), }, nil } func newNotifyFSRequestHandler(xp rpc.Transporter, g *libkb.GlobalContext) *notifyFSRequestHandler { return ¬ifyFSRequestHandler{ BaseHandler: NewBaseHandler(g, xp), Contextified: libkb.NewContextified(g), } } func (h *notifyFSRequestHandler) FSEditListRequest(ctx context.Context, arg keybase1.FSEditListRequest) error { cli, err := h.client() if err != nil { return err } return cli.FSEditListRequest(ctx, arg) } func (h *notifyFSRequestHandler) FSSyncStatusRequest(ctx context.Context, arg keybase1.FSSyncStatusRequest) error { cli, err := h.client() if err != nil { return err } return cli.FSSyncStatusRequest(ctx, arg) }