Skip to content

Commit

Permalink
[bugfix] Fix imports for helpers.gen.go (#924)
Browse files Browse the repository at this point in the history
  • Loading branch information
i5heu authored Oct 29, 2022
1 parent c7ba195 commit 31f0f27
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/config/gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ func main() {
fmt.Fprint(output, "// THIS IS A GENERATED FILE, DO NOT EDIT BY HAND\n")
fmt.Fprint(output, license)
fmt.Fprint(output, "package config\n\n")
fmt.Fprint(output, "import \"codeberg.org/gruf/go-bytesize\"\n\n")
t := reflect.TypeOf(config.Configuration{})
for i := 0; i < t.NumField(); i++ {
field := t.Field(i)
Expand Down

0 comments on commit 31f0f27

Please sign in to comment.