aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-05 10:24:21 -0300
committerEuAndreh <eu@euandre.org>2025-05-05 10:24:21 -0300
commitc35147bf9a270a07b7922ec8f1923d43f7720c23 (patch)
tree12f37a56f54c6dd0ea406f28bd4105df1634e1f0
parentgit mv meta.json meta.capim (diff)
downloadgistatic-c35147bf9a270a07b7922ec8f1923d43f7720c23.tar.gz
gistatic-c35147bf9a270a07b7922ec8f1923d43f7720c23.tar.xz
src/gistatic.go: Tweak indentation 💅
-rw-r--r--src/gistatic.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gistatic.go b/src/gistatic.go
index b4ad501..14954fc 100644
--- a/src/gistatic.go
+++ b/src/gistatic.go
@@ -54,16 +54,14 @@ func getopt(allArgs []string, w io.Writer) (argsT, int) {
return argsT{}, 2
}
- args := argsT{
+ return argsT{
outputPath: *outputPath,
cloneUrl: *cloneUrl,
allArgs: allArgs,
- }
-
- return args, 0
+ }, 0
}
-func run(args argsT, stdin io.Reader, stdout io.Writer, stderr io.Writer) int {
+func run(args argsT, stdin io.Reader, stdout io.Writer, stderr io.Writer) int {
return 0
}