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

14 lines
227 B
Ruby

# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
class ListExperiment < Grape::Entity
expose :experiments, with: Experiment
end
end
end
end
end