feat: initial memo store

This commit is contained in:
Steven
2023-12-10 16:57:01 +08:00
parent 5c3df55b72
commit add523f8a5
7 changed files with 637 additions and 0 deletions

View File

@ -238,6 +238,10 @@ func (s *Store) DeleteUser(ctx context.Context, delete *DeleteUser) error {
return err
}
if err := vacuumMemo(ctx, tx); err != nil {
return err
}
if err := tx.Commit(); err != nil {
return err
}