From f520681b825134f3f587398bc7de64a5a8b5b6c2 Mon Sep 17 00:00:00 2001 From: David Newhall II Date: Mon, 8 Mar 2021 01:06:48 -0800 Subject: [PATCH] add comment --- core/unifi/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/unifi/types.go b/core/unifi/types.go index 8676f85b..5ae99f88 100644 --- a/core/unifi/types.go +++ b/core/unifi/types.go @@ -108,6 +108,7 @@ type Unifi struct { type fingerprints []string +// Contains returns true if the fingerprint is in the list. func (f fingerprints) Contains(s string) bool { for i := range f { if s == f[i] {