diff options
author | EuAndreh <eu@euandre.org> | 2025-05-05 10:24:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-05 10:24:21 -0300 |
commit | c35147bf9a270a07b7922ec8f1923d43f7720c23 (patch) | |
tree | 12f37a56f54c6dd0ea406f28bd4105df1634e1f0 | |
parent | git mv meta.json meta.capim (diff) | |
download | gistatic-c35147bf9a270a07b7922ec8f1923d43f7720c23.tar.gz gistatic-c35147bf9a270a07b7922ec8f1923d43f7720c23.tar.xz |
src/gistatic.go: Tweak indentation 💅
-rw-r--r-- | src/gistatic.go | 8 |
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 } |