blob: f5e4f5f15fd15d7c23d692e4a3a93ac6bc942387 [file] [log] [blame]
// Copyright 2018 The Goma Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package account
import "errors"
// Empty doesn't provide any service accounts.
type Empty struct{}
func (e Empty) New(name string) (Account, error) {
return nil, errors.New("empty has no service account")
}