From 55394025e97b1a876a65dfe74debd71bb7ab8837 Mon Sep 17 00:00:00 2001 From: "E. Lynette Rayle" Date: Wed, 19 Jul 2023 13:59:46 -0400 Subject: [PATCH] Add Go Playground for testing spdx.Satisfies --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9525f2b..a10b2b5 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ to first check if all of the expressions from `allowedList` are valid. #### Examples: Satisfies returns true +[Go Playground for Satisfies](https://go.dev/play/p/Ul8H15hyEpQ) + ```go Satisfies("MIT", []string{"MIT"}) Satisfies("MIT", []string{"MIT", "Apache-2.0"})