Sha256: 19221201187eb36518576dc33e76fb16ba14e246ca7b84d7fff693f93d9b4627
Contents?: true
Size: 394 Bytes
Versions: 14
Compression:
Stored size: 394 Bytes
Contents
# frozen_string_literal: true module Mihari module Entities class CommandInput < Grape::Entity expose :command, documentation: { type: String, required: true } end class CommandResult < Grape::Entity expose :output, documentation: { type: String, required: true } expose :success, documentation: { type: Grape::API::Boolean, required: true } end end end
Version data entries
14 entries across 14 versions & 1 rubygems