gitlab-org--gitlab-foss/lib/api/entities/ml/mlflow/get_experiment.rb

14 lines
239 B
Ruby

# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class GetExperiment < Grape::Entity
expose :itself, using: Experiment, as: :experiment
end
end
end
end
end