Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamoss committed Jun 15, 2021
1 parent 95e98f2 commit 6ee8f2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion builder/order/step_wait_barista.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package order

import (
"context"
"time"

"github.com/hashicorp/packer-plugin-sdk/multistep"
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
"time"
)

type StepWaitForBarista struct {
Expand Down
5 changes: 3 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ package main

import (
"fmt"
"github.com/hashicorp/packer-plugin-sdk/plugin"
"github.com/hashicorp/packer-plugin-sdk/version"
"os"
"packer-plugin-hashicups/builder/order"
"packer-plugin-hashicups/datasource/coffees"
"packer-plugin-hashicups/datasource/ingredients"
"packer-plugin-hashicups/post-processor/receipt"
"packer-plugin-hashicups/provisioner/toppings"

"github.com/hashicorp/packer-plugin-sdk/plugin"
"github.com/hashicorp/packer-plugin-sdk/version"
)

var (
Expand Down
3 changes: 2 additions & 1 deletion post-processor/receipt/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package receipt

import (
"fmt"
"github.com/jung-kurt/gofpdf"
"os"
"path/filepath"
"time"

"github.com/jung-kurt/gofpdf"
)

type Printer interface {
Expand Down

0 comments on commit 6ee8f2f

Please sign in to comment.