/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/service/ctl_other.go
21 строка
610 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
// Copyright 2019 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. //go:build darwin package service import ( "context" "errors" keybase1 "github.com/keybase/client/go/protocol/keybase1" ) func (c *CtlHandler) SetOnLoginStartup(_ context.Context, _ bool) error { return errors.New("SetOnLoginStartup not supported on this platform") } func (c *CtlHandler) GetOnLoginStartup(_ context.Context) (keybase1.OnLoginStartupStatus, error) { return keybase1.OnLoginStartupStatus_UNKNOWN, errors.New("GetOnLoginStartup not supported on this platform") }