18 lines
304 B
Go
18 lines
304 B
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
|
|
}
|