summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-09-28 11:02:37 +0300
committerPaul Buetow <paul@buetow.org>2024-09-28 11:02:37 +0300
commit6865389682c865717bb28f19943c09d0610a7981 (patch)
tree43356c5d709977aca65ebb51d7ec4dfe122fc28b /internal/config
parentb8c5cb42095cf9406e3e4330aefee5063bf00bea (diff)
add lookback time
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/args.go3
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
}