From c2ed46daf9c8a9587572041fecc968fd22f8420b Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Sun, 4 Feb 2024 11:27:49 +0100 Subject: [PATCH] add package.go file to use compose-go in docker cli Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- package.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 package.go diff --git a/package.go b/package.go new file mode 100644 index 00000000..821f726a --- /dev/null +++ b/package.go @@ -0,0 +1,21 @@ +/* + Copyright 2020 The Compose Specification Authors. + + 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. +*/ + +/* +Go reference library for parsing and loading Compose files as specified by the +Compose specification https://github.com/compose-spec/compose-spec. +*/ +package compose // import "github.com/compose-spec/compose-go"