refactor: introduce GC, to delete old data

This commit is contained in:
Deluan 2020-01-31 20:17:36 -05:00 committed by Deluan Quintão
parent 5d1df19291
commit de1fea64bc
6 changed files with 105 additions and 9 deletions

View file

@ -33,4 +33,5 @@ type DataStore interface {
Resource(ctx context.Context, model interface{}) ResourceRepository
WithTx(func(tx DataStore) error) error
GC(ctx context.Context) error
}