diff options
| author | Paul Buetow <paul@buetow.org> | 2024-09-28 11:02:37 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-09-28 11:02:37 +0300 |
| commit | 6865389682c865717bb28f19943c09d0610a7981 (patch) | |
| tree | 43356c5d709977aca65ebb51d7ec4dfe122fc28b /internal/config | |
| parent | b8c5cb42095cf9406e3e4330aefee5063bf00bea (diff) | |
add lookback time
Diffstat (limited to 'internal/config')
| -rw-r--r-- | internal/config/args.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/config/args.go b/internal/config/args.go index 5b16912..b71c53e 100644 --- a/internal/config/args.go +++ b/internal/config/args.go @@ -1,7 +1,10 @@ package config +import "time" + type Args struct { GosDir string DryRun bool Platforms []string + Lookback time.Duration } |
