Skip to content

Commit

Permalink
chore: tidy imports (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Mar 10, 2023
1 parent 7ca3edc commit 7f48c5f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
2 changes: 2 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ package cmd

import (
"fmt"

"github.com/spf13/cobra"

"github.com/tj-actions/auto-doc/internal"
"github.com/tj-actions/auto-doc/internal/types"
)
Expand Down
12 changes: 7 additions & 5 deletions internal/types/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ package types
import (
"bytes"
"fmt"
"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
"github.com/tj-actions/auto-doc/internal"
"github.com/tj-actions/auto-doc/internal/utils"
"gopkg.in/yaml.v3"
"os"
"sort"
"strconv"
"strings"

"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
"gopkg.in/yaml.v3"

"github.com/tj-actions/auto-doc/internal"
"github.com/tj-actions/auto-doc/internal/utils"
)

// ActionInput represents the input of the action.yml
Expand Down
12 changes: 7 additions & 5 deletions internal/types/reusable.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ package types
import (
"bytes"
"fmt"
"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
"github.com/tj-actions/auto-doc/internal"
"github.com/tj-actions/auto-doc/internal/utils"
"gopkg.in/yaml.v3"
"os"
"sort"
"strconv"
"strings"

"github.com/olekukonko/tablewriter"
"github.com/spf13/cobra"
"gopkg.in/yaml.v3"

"github.com/tj-actions/auto-doc/internal"
"github.com/tj-actions/auto-doc/internal/utils"
)

// ReusableInput represents the input of the reusable workflow
Expand Down
3 changes: 2 additions & 1 deletion internal/utils/format_value.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ package utils

import (
"fmt"
"github.com/tj-actions/auto-doc/internal"
"strings"

"github.com/tj-actions/auto-doc/internal"
)

func FormatValue(v string) string {
Expand Down

0 comments on commit 7f48c5f

Please sign in to comment.