minor refactor

This commit is contained in:
2023-09-01 15:13:54 -04:00
parent faa413c9b1
commit 1662ff226b
5 changed files with 31 additions and 17 deletions

View File

@ -51,6 +51,6 @@ func main() {
fmt.Println(err)
out, err := os.Create("./collage.jpg")
fmt.Println(err)
err = collage.Make(req, os.DirFS("."), out)
err = collage.Make(&req, os.DirFS("."), out)
fmt.Println(err)
}