Skip to content

Commit

Permalink
Bumped major version to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
aquilax committed Apr 7, 2022
1 parent dfe1774 commit 13b6971
Show file tree
Hide file tree
Showing 51 changed files with 153 additions and 153 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ MODULES=$(shell ${GO} list -m)
all: $(TARGET) docs

$(TARGET): $(SRC)
$(GO) build -o $(TARGET) github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli
$(GO) build -o $(TARGET) github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli

docs: $(TARGET) docs/command-line.md docs/usage.md README.md

Expand Down
12 changes: 6 additions & 6 deletions cmd/hranoprovod-cli/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (
"os"
"testing"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/balance"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/csv"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/print"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/register"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/summary"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/balance"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/csv"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/print"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/register"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/summary"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/stretchr/testify/assert"
"github.com/urfave/cli/v2"
)
Expand Down
18 changes: 9 additions & 9 deletions cmd/hranoprovod-cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli
module github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli

go 1.17

require (
github.com/aquilax/hranoprovod-cli/v2/lib/filter v0.0.0
github.com/aquilax/hranoprovod-cli/v2/lib/parser v0.0.0
github.com/aquilax/hranoprovod-cli/v2/lib/resolver v0.0.0
github.com/aquilax/hranoprovod-cli/v2/lib/shared v0.0.0
github.com/aquilax/hranoprovod-cli/v3/lib/filter v0.0.0
github.com/aquilax/hranoprovod-cli/v3/lib/parser v0.0.0
github.com/aquilax/hranoprovod-cli/v3/lib/resolver v0.0.0
github.com/aquilax/hranoprovod-cli/v3/lib/shared v0.0.0
github.com/stretchr/testify v1.7.1
github.com/tj/go-naturaldate v1.3.0
github.com/urfave/cli/v2 v2.3.0
Expand All @@ -23,10 +23,10 @@ require (
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

replace github.com/aquilax/hranoprovod-cli/v2/lib/shared => ../../lib/shared
replace github.com/aquilax/hranoprovod-cli/v3/lib/shared => ../../lib/shared

replace github.com/aquilax/hranoprovod-cli/v2/lib/parser => ../../lib/parser
replace github.com/aquilax/hranoprovod-cli/v3/lib/parser => ../../lib/parser

replace github.com/aquilax/hranoprovod-cli/v2/lib/filter => ../../lib/filter
replace github.com/aquilax/hranoprovod-cli/v3/lib/filter => ../../lib/filter

replace github.com/aquilax/hranoprovod-cli/v2/lib/resolver => ../../lib/resolver
replace github.com/aquilax/hranoprovod-cli/v3/lib/resolver => ../../lib/resolver
14 changes: 7 additions & 7 deletions cmd/hranoprovod-cli/internal/balance/balance.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package balance
import (
"io"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/balance/balance_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

type balanceReporter struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/balance/balance_reporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"io"
"testing"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

func getSimpleTree() *shared.TreeNode {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"strings"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

type balanceSingleReporter struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/balance/balance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"testing"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/stretchr/testify/assert"
)

Expand Down
14 changes: 7 additions & 7 deletions cmd/hranoprovod-cli/internal/csv/csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import (
"io"
"sort"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/csv/csv_database_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/csv"
"fmt"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

// CSVReporter outputs report for single food
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/csv/csv_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/csv"
"fmt"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

const DefaultOutputTimeFormat = "2006-01-02"
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gen
import (
"fmt"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/urfave/cli/v2"
)

Expand Down
10 changes: 5 additions & 5 deletions cmd/hranoprovod-cli/internal/lint/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"io"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/lint/lint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"testing"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/stretchr/testify/assert"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/hranoprovod-cli/internal/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"os"
"time"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/resolver"
"github.com/tj/go-naturaldate"
"github.com/urfave/cli/v2"
gcfg "gopkg.in/gcfg.v1"
Expand Down
10 changes: 5 additions & 5 deletions cmd/hranoprovod-cli/internal/print/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package print
import (
"io"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/print/print_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bufio"
"fmt"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

// PrintReporter outputs log report
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/print/print_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"testing"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/stretchr/testify/assert"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"sort"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

// elementByFoodReporter outputs report for single element groupped by food
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/register/reg_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"time"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

const (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bufio"
"text/template"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

const defaultTemplate = `{{formatDate .Time}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"testing"
"time"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/stretchr/testify/assert"
)

Expand Down
14 changes: 7 additions & 7 deletions cmd/hranoprovod-cli/internal/register/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package register
import (
"io"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/register/single_food_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"regexp"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

type singleFoodReporter struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/register/single_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"time"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

// singleReporter outputs report for single food
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/report/element_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bufio"
"fmt"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

type ElementReporter struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/hranoprovod-cli/internal/report/quantity_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"sort"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
)

type QuantityReporter struct {
Expand Down
14 changes: 7 additions & 7 deletions cmd/hranoprovod-cli/internal/report/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
"io"
"sort"

"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v2/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v2/lib/filter"
"github.com/aquilax/hranoprovod-cli/v2/lib/parser"
"github.com/aquilax/hranoprovod-cli/v2/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v2/lib/shared"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/v3/lib/filter"
"github.com/aquilax/hranoprovod-cli/v3/lib/parser"
"github.com/aquilax/hranoprovod-cli/v3/lib/resolver"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/urfave/cli/v2"
)

Expand Down
Loading

0 comments on commit 13b6971

Please sign in to comment.