ensure reasonable ordering of declarations in source
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M domain/content/builder/build/main.go → domain/content/builder/build/main.go
@@ -19,14 +19,14 @@ "github.com/ardanlabs/conf/v3" ) -const branch = "main" - type Options struct { *builder.Options Destination string `conf:"default:./public,short:d,flag:dest"` Compress bool `conf:"default:true"` Writer string `conf:"default:files,help:Output type (files|sqlite)"` } + +const branch = "main" func main() { options := &Options{}