blob: b7f5eee79bf174424ff0770d97f544a58924bbcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package client
import (
"git.tardisproject.uk/tcmal/vault-plugin-kerberos-secrets/config"
)
type client struct{}
func ClientFromConfig(config *config.Config) (client, error) {
return client{}, nil
}
func (c client) SetPassword(username string, password string) error {
return nil // TODO
}
func (c client) SetPasswordWithOld(username string, oldPassword, newPassword string) error {
return nil // TODO
}
|