From c0722483b86c08753a12c59b195183e3d4260570 Mon Sep 17 00:00:00 2001 From: mr Date: Tue, 31 Mar 2026 16:41:12 +0200 Subject: [PATCH] IsNot in catalog strategy --- models/utils/interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/utils/interfaces.go b/models/utils/interfaces.go index 84b2ab7..170a0c2 100755 --- a/models/utils/interfaces.go +++ b/models/utils/interfaces.go @@ -18,7 +18,7 @@ type ShallowDBObject interface { // DBObject is an interface that defines the basic methods for a DBObject type DBObject interface { GenerateID() - IsNotInCatalog() + IsNotInCatalog() bool SetID(id string) GetID() string GetName() string