debian-mirror-gitlab/lib/api/entities/ml/mlflow/run.rb
2022-10-11 01:57:18 +05:30

16 lines
323 B
Ruby

# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class Run < Grape::Entity
expose :run do
expose(:info) { |candidate| RunInfo.represent(candidate) }
expose(:data) { |candidate| {} }
end
end
end
end
end
end