diff options
author | rtz12 <koenig@fagott.pw> | 2016-10-11 19:02:59 (UTC) |
---|---|---|
committer | rtz12 <koenig@fagott.pw> | 2016-10-11 19:02:59 (UTC) |
commit | ce5973c4024f22a8f8c63818109a2ca4f3be7bc4 (patch) | |
tree | e7b6b5d5c6e73451b489e97f90206a96bf9ed2df /modules/lists | |
parent | fbd746aef8c78067593f901afb0f255574392499 (diff) | |
parent | b5051d2358e12f877e5c52053dcf1a16959e4ded (diff) |
Merge branch 'master' of projekte.fagott.pw:grilist
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 | ||