diff options
Diffstat (limited to 'modules/lists')
-rw-r--r-- | modules/lists/lists.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/lists/lists.go b/modules/lists/lists.go index 9c9eaf4..65e969f 100644 --- a/modules/lists/lists.go +++ b/modules/lists/lists.go | |||
@@ -17,6 +17,7 @@ import ( | |||
17 | "fagott.pw/grilist/eventlogging" | 17 | "fagott.pw/grilist/eventlogging" |
18 | "fagott.pw/grilist/frontend" | 18 | "fagott.pw/grilist/frontend" |
19 | "fagott.pw/grilist/grilist" | 19 | "fagott.pw/grilist/grilist" |
20 | "fagott.pw/grilist/models" | ||
20 | "fagott.pw/grilist/modules/grils" | 21 | "fagott.pw/grilist/modules/grils" |
21 | "github.com/julienschmidt/httprouter" | 22 | "github.com/julienschmidt/httprouter" |
22 | "github.com/lib/pq" | 23 | "github.com/lib/pq" |
@@ -42,7 +43,7 @@ type List struct { | |||
42 | 43 | ||
43 | // ListGril ist ein geranktes Gril | 44 | // ListGril ist ein geranktes Gril |
44 | type ListGril struct { | 45 | type ListGril struct { |
45 | Gril *grils.Gril | 46 | Gril *models.Gril |
46 | Order int | 47 | Order int |
47 | } | 48 | } |
48 | 49 | ||