feat: account deletion in settings + privacy policy with deletion link

This commit is contained in:
2026-07-17 15:47:29 -04:00
parent 09a59c6124
commit ddead767ae
49 changed files with 1152 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
//go:build ignore
// +build ignore
package main
import (
"fmt"
"git.dustin.coffee/hobokenchicken/dumpsterChat/internal/auth"
)
func main() {
hash, err := auth.HashPassword("password")
if err != nil {
panic(err)
}
fmt.Print(hash)
}