summaryrefslogtreecommitdiff
path: root/lib/peek/views/host.rb
blob: 43c8a35c7ea00f2f223652c48f4630485c03491f (plain)
1
2
3
4
5
6
7
8
9
module Peek
  module Views
    class Host < View
      def results
        { hostname: Gitlab::Environment.hostname }
      end
    end
  end
end