open-vault/vault/identity_store_oss.go
2022-01-05 12:02:03 -06:00

22 lines
402 B
Go

//go:build !enterprise
package vault
import (
"context"
"github.com/hashicorp/vault/helper/identity"
)
func (c *Core) PersistTOTPKey(context.Context, string, string, string) error {
return nil
}
func (c *Core) SendGroupUpdate(context.Context, *identity.Group) (bool, error) {
return false, nil
}
func (c *Core) CreateEntity(ctx context.Context) (*identity.Entity, error) {
return nil, nil
}