debian-mirror-gitlab/lib/api/entities/ml/mlflow/key_value.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
230 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
module API
module Entities
module Ml
module Mlflow
2023-03-04 22:38:38 +05:30
class KeyValue < Grape::Entity
2022-11-25 23:54:43 +05:30
expose :name, as: :key
expose :value
end
end
end
end
end