2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-01-05 18:02:03 +00:00
|
|
|
//go:build !enterprise
|
2021-08-30 19:31:11 +00:00
|
|
|
|
|
|
|
package vault
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/helper/identity"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (c *Core) SendGroupUpdate(context.Context, *identity.Group) (bool, error) {
|
|
|
|
return false, nil
|
|
|
|
}
|
2021-10-15 19:20:00 +00:00
|
|
|
|
|
|
|
func (c *Core) CreateEntity(ctx context.Context) (*identity.Entity, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|