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

      graphql_name 'Submodule'
    end
  end
end