refactor(repo,user): move scan logic to unexported method

This commit is contained in:
Guz
2025-06-10 14:54:09 -03:00
parent 5b4978b0ac
commit f73d5918e5
2 changed files with 25 additions and 8 deletions

View File

@@ -40,3 +40,7 @@ var (
)
var dateFormat = time.RFC3339
type scan interface {
Scan(dest ...any) error
}