home to your local SPACEGIRL 💫 arimelody.space
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

and she never dealt with indentation issues ever again

+9 -2
+7
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + end_of_line = lf 5 + insert_final_newline = true 6 + indent_style = space 7 + indent_size = 4
+2 -2
main.go
··· 223 223 code := controller.GenerateTOTP(totp.Secret, 0) 224 224 fmt.Printf("%s\n", code) 225 225 return 226 - 226 + 227 227 case "cleanTOTP": 228 228 err := controller.DeleteUnconfirmedTOTPs(app.DB) 229 229 if err != nil { ··· 346 346 if !strings.HasPrefix(res, "y") { 347 347 return 348 348 } 349 - 349 + 350 350 err = controller.DeleteAccount(app.DB, account.ID) 351 351 if err != nil { 352 352 fmt.Fprintf(os.Stderr, "FATAL: Failed to delete account: %v\n", err)