all repos — homestead @ 20dd619b8605660dac67fa435d711e5f22da3174

Code for my website

ensure reasonable ordering of declarations in source

Alan Pearce
commit

20dd619b8605660dac67fa435d711e5f22da3174

parent

6f41d182abaf1af16fd0cc697abf0f2e9ce54c5c

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M domain/content/builder/build/main.godomain/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{}