go lookup_android 源码
golang lookup_android 代码
文件路径:/src/os/user/lookup_android.go
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build android
package user
import "errors"
func lookupUser(string) (*User, error) {
	return nil, errors.New("user: Lookup not implemented on android")
}
func lookupUserId(string) (*User, error) {
	return nil, errors.New("user: LookupId not implemented on android")
}
func lookupGroup(string) (*Group, error) {
	return nil, errors.New("user: LookupGroup not implemented on android")
}
func lookupGroupId(string) (*Group, error) {
	return nil, errors.New("user: LookupGroupId not implemented on android")
}
相关信息
相关文章
                        
                            0
                        
                        
                             赞
                        
                    
                    
                热门推荐
- 
                        2、 - 优质文章
 - 
                        3、 gate.io
 - 
                        7、 openharmony
 - 
                        9、 golang