diff options
Diffstat (limited to 'graphql/models/models.go')
-rw-r--r-- | graphql/models/models.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/graphql/models/models.go b/graphql/models/models.go deleted file mode 100644 index 816a04a8..00000000 --- a/graphql/models/models.go +++ /dev/null @@ -1,23 +0,0 @@ -// Package models contains the various GraphQL data models -package models - -import ( - "github.com/MichaelMure/git-bug/cache" -) - -type ConnectionInput struct { - After *string - Before *string - First *int - Last *int -} - -type Repository struct { - Cache *cache.MultiRepoCache - Repo *cache.RepoCache -} - -type RepositoryMutation struct { - Cache *cache.MultiRepoCache - Repo *cache.RepoCache -} |