1// Copyright 2017 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 5package user 6 7import "fmt" 8 9func listGroups(u *User) ([]string, error) { 10 return nil, fmt.Errorf("user: list groups for %s: not supported on AIX", u.Username) 11} 12