From 0bd62b1d8b13ad1d38f61a6388c1f2e292b191a5 Mon Sep 17 00:00:00 2001 From: Aria Date: Mon, 25 Sep 2023 00:12:03 +0100 Subject: fockin BOOOILLEEERPLAAATEEE --- client/client.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 client/client.go (limited to 'client') diff --git a/client/client.go b/client/client.go new file mode 100644 index 0000000..b7f5eee --- /dev/null +++ b/client/client.go @@ -0,0 +1,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 +} -- cgit v1.2.3