feat: account deletion

This commit is contained in:
juancwu 2026-05-17 15:01:04 +00:00
commit 2db260f849
20 changed files with 785 additions and 29 deletions

View file

@ -58,6 +58,7 @@ func main() {
workerCtx, stopWorker := context.WithCancel(context.Background())
defer stopWorker()
go runRecurringWorker(workerCtx, a)
go a.AccountDeletionWorker.Start(workerCtx)
go func() {
sigCh := make(chan os.Signal, 1)