From 02370002aa9d3362a1c8234263e4cc4b04362cb2 Mon Sep 17 00:00:00 2001 From: chapeau Date: Sat, 21 Oct 2023 22:05:06 +0200 Subject: [PATCH] syntax --- polyculeconnect/connector/refuse_all.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polyculeconnect/connector/refuse_all.go b/polyculeconnect/connector/refuse_all.go index 94c417e..edb862c 100644 --- a/polyculeconnect/connector/refuse_all.go +++ b/polyculeconnect/connector/refuse_all.go @@ -17,9 +17,9 @@ func (c *RefuseAllConfig) Open(id string, logger log.Logger) (connector.Connecto type RefuseAllConnector struct{} func (m *RefuseAllConnector) LoginURL(s connector.Scopes, callbackURL, state string) (string, error) { - return "", fmt.Errorf("You shouldn't use this function") + return "", fmt.Errorf("you shouldn't use this function") } func (m *RefuseAllConnector) HandleCallback(s connector.Scopes, r *http.Request) (identity connector.Identity, err error) { - return connector.Identity{}, fmt.Errorf("You shouldn't use this function") + return connector.Identity{}, fmt.Errorf("you shouldn't use this function") }