summaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-09-21 15:54:11 +0300
committerPaul Buetow <paul@buetow.org>2024-09-21 15:54:11 +0300
commitd38f93fc4fdb54687c425b8866bc99cbd9ad7935 (patch)
treeca5e5b3c582ea373aa6b9193d2e047e2fb06c2f5 /internal/config
parentdff4d455e07d639b82a0bed814f41d0656e9b6d0 (diff)
initial revamp
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/args.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/config/args.go b/internal/config/args.go
new file mode 100644
index 0000000..5b16912
--- /dev/null
+++ b/internal/config/args.go
@@ -0,0 +1,7 @@
+package config
+
+type Args struct {
+ GosDir string
+ DryRun bool
+ Platforms []string
+}