From 5bfb51f80177845ff9a4bc1ba2cfd7b4b87593dc Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Fri, 24 Feb 2023 17:44:17 +0200 Subject: [PATCH] Add API for interacting with runtime engine configs Signed-off-by: Evan Lezar --- internal/config/engine/api.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 internal/config/engine/api.go diff --git a/internal/config/engine/api.go b/internal/config/engine/api.go new file mode 100644 index 00000000..5cd5fb52 --- /dev/null +++ b/internal/config/engine/api.go @@ -0,0 +1,25 @@ +/** +# Copyright (c) NVIDIA CORPORATION. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +**/ + +package engine + +// Interface defines the API for a runtime config updater. +type Interface interface { + DefaultRuntime() string + AddRuntime(string, string, bool) error + RemoveRuntime(string) error + Save(string) (int64, error) +}