Skip to content

Commit

Permalink
Merge pull request #48 from aquilax/shared-to-root
Browse files Browse the repository at this point in the history
Moves shared to root
  • Loading branch information
aquilax authored Apr 7, 2022
2 parents 39b992e + 91da750 commit 24f1388
Show file tree
Hide file tree
Showing 61 changed files with 154 additions and 157 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/v3/cmd/hranoprovod-cli
$(GO) build -o $(TARGET) github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3

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

Expand Down
File renamed without changes.
File renamed without changes.
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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/balance"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/csv"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/print"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/register"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/summary"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/testutils"
"github.com/stretchr/testify/assert"
"github.com/urfave/cli/v2"
)
Expand Down
21 changes: 9 additions & 12 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/v3/cmd/hranoprovod-cli
module github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3

go 1.17

require (
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/aquilax/hranoprovod-cli/lib/filter/v3 v3.0.0
github.com/aquilax/hranoprovod-cli/lib/parser/v3 v3.0.0
github.com/aquilax/hranoprovod-cli/lib/resolver/v3 v3.0.0
github.com/aquilax/hranoprovod-cli/v3 v3.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,7 @@ require (
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)

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

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

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

replace github.com/aquilax/hranoprovod-cli/v3/lib/resolver => ../../lib/resolver
replace github.com/aquilax/hranoprovod-cli/v3 => ../../
replace github.com/aquilax/hranoprovod-cli/lib/parser/v3 => ../../lib/parser
replace github.com/aquilax/hranoprovod-cli/lib/filter/v3 => ../../lib/filter
replace github.com/aquilax/hranoprovod-cli/lib/resolver/v3 => ../../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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"github.com/aquilax/hranoprovod-cli/lib/resolver/v3"
shared "github.com/aquilax/hranoprovod-cli/v3"
"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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"github.com/aquilax/hranoprovod-cli/lib/resolver/v3"
shared "github.com/aquilax/hranoprovod-cli/v3"
"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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

// 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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/utils"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
shared "github.com/aquilax/hranoprovod-cli/v3"
"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/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"github.com/aquilax/hranoprovod-cli/lib/resolver/v3"
"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/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/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

// 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/v3/cmd/hranoprovod-cli/internal/options"
"github.com/aquilax/hranoprovod-cli/v3/cmd/hranoprovod-cli/internal/testutils"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

// 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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
"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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"github.com/aquilax/hranoprovod-cli/lib/resolver/v3"
shared "github.com/aquilax/hranoprovod-cli/v3"
"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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

// 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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/v3/cmd/hranoprovod-cli/internal/reporter"
"github.com/aquilax/hranoprovod-cli/v3/lib/shared"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
shared "github.com/aquilax/hranoprovod-cli/v3"
)

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/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/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/options"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/reporter"
"github.com/aquilax/hranoprovod-cli/cmd/hranoprovod-cli/v3/internal/utils"
"github.com/aquilax/hranoprovod-cli/lib/filter/v3"
"github.com/aquilax/hranoprovod-cli/lib/parser/v3"
"github.com/aquilax/hranoprovod-cli/lib/resolver/v3"
shared "github.com/aquilax/hranoprovod-cli/v3"
"github.com/urfave/cli/v2"
)

Expand Down
Loading

0 comments on commit 24f1388

Please sign in to comment.