diff options
author | Michael Muré <batolettre@gmail.com> | 2020-03-22 13:53:34 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-03-28 17:13:28 +0100 |
commit | 314fcbb2293d869c33d6a76aedd148aedff6561d (patch) | |
tree | 05386ddf08d7e1c2947a6fc6cf2fbd44efa19eaf /termui/bug_table.go | |
parent | 5e4dc87ffec7f87bbf3ebfcf256777ad773e8450 (diff) | |
download | git-bug-314fcbb2293d869c33d6a76aedd148aedff6561d.tar.gz |
query: no need for an ast package
Diffstat (limited to 'termui/bug_table.go')
-rw-r--r-- | termui/bug_table.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/termui/bug_table.go b/termui/bug_table.go index 74f92826..80d5ebcb 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -13,7 +13,6 @@ import ( "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/query" - "github.com/MichaelMure/git-bug/query/ast" "github.com/MichaelMure/git-bug/util/colors" ) @@ -28,7 +27,7 @@ const defaultQuery = "status:open" type bugTable struct { repo *cache.RepoCache queryStr string - query *ast.Query + query *query.Query allIds []entity.Id excerpts []*cache.BugExcerpt pageCursor int |