Home | History | Annotate | Download | only in user
      1 // Copyright 2011 The Go Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style
      3 // license that can be found in the LICENSE file.
      4 
      5 // +build !cgo,!windows,!plan9 android
      6 
      7 package user
      8 
      9 import (
     10 	"fmt"
     11 	"runtime"
     12 )
     13 
     14 func init() {
     15 	implemented = false
     16 }
     17 
     18 func current() (*User, error) {
     19 	return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
     20 }
     21 
     22 func lookup(username string) (*User, error) {
     23 	return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
     24 }
     25 
     26 func lookupId(uid string) (*User, error) {
     27 	return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
     28 }
     29