Skip to content

Commit

Permalink
fix: codeclimate linter line length err
Browse files Browse the repository at this point in the history
  • Loading branch information
hhow09 committed May 19, 2024
1 parent 00a85c0 commit d96fe6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ func main() {
flag.Usage = printUsage

versionPtr := flag.Bool("version", false, "print version of repogen")
pkgPtr := flag.String("pkg", ".", "package directory to scan for model struct and repository interface")
pkgPtr := flag.String(
"pkg",
".",
"package directory to scan for model struct and repository interface",
)
destPtr := flag.String("dest", "", "destination file")
modelPtr := flag.String("model", "", "model struct name")
repoPtr := flag.String("repo", "", "repository interface name")
Expand Down

0 comments on commit d96fe6c

Please sign in to comment.