github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/libkb/secret_store_other.go (about)

     1  // Copyright 2015 Keybase, Inc. All rights reserved. Use of
     2  // this source code is governed by the included BSD license.
     3  
     4  //go:build !darwin && !android && !linux
     5  // +build !darwin,!android,!linux
     6  
     7  package libkb
     8  
     9  func NewSecretStoreAll(m MetaContext) SecretStoreAll {
    10  	g := m.G()
    11  	s := NewSecretStoreFile(g.Env.GetDataDir())
    12  	s.notifyCreate = func(name NormalizedUsername) { notifySecretStoreCreate(m, name) }
    13  	return s
    14  }