コード例 #1
0
ファイル: scankeys.go プロジェクト: mark-adams/client
// apiLookup gets the username and uid from the api server for the
// key id.
func (s *ScanKeys) apiLookup(id uint64) (username string, uid keybase1.UID, err error) {
	return libkb.PGPLookup(s.G(), id)
}
コード例 #2
0
ファイル: scankeys.go プロジェクト: polluks/client
// apiLookup gets the username and uid from the api server for the
// key id.
func (s *ScanKeys) apiLookup(id uint64) (username, uid string, err error) {
	return libkb.PGPLookup(s.G(), id)
}