tabs -> spaces

This commit is contained in:
forest 2021-02-25 17:55:20 -06:00
parent 4009f0441d
commit 94395788e4

@ -302,10 +302,10 @@ const captchaDifficultyLevel = 5
... ...
apiToken := os.ExpandEnv("$CAPTCHA_API_TOKEN") apiToken := os.ExpandEnv("$CAPTCHA_API_TOKEN")
if apiToken == "" { if apiToken == "" {
panic(errors.New("can't start the app, the CAPTCHA_API_TOKEN environment variable is required")) panic(errors.New("can't start the app, the CAPTCHA_API_TOKEN environment variable is required"))
} }
captchaAPIURL, err = url.Parse("http://localhost:2370") captchaAPIURL, err = url.Parse("http://localhost:2370")
``` ```