summaryrefslogtreecommitdiff
path: root/app/graphql/types/tree/blob_type.rb
blob: 230624201b06e41f459f664332b222726456228f (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
module Types
  module Tree
    class BlobType < BaseObject
      implements Types::Tree::EntryType

      graphql_name 'Blob'
    end
  end
end