1# frozen_string_literal: true 2 3module API 4 module Entities 5 class GpgKey < Grape::Entity 6 expose :id, :key, :created_at 7 end 8 end 9end 10