14 lines
239 B
Ruby
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
|