From b1a835b343a5d45e52befe836d673afa1ca4f8c3 Mon Sep 17 00:00:00 2001 From: EthanThatOneKid <31261035+EthanThatOneKid@users.noreply.github.com> Date: Thu, 23 Nov 2023 00:29:19 -0800 Subject: [PATCH] Update interactors_generator.go --- cli/interactors_generator/interactors_generator.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/interactors_generator/interactors_generator.go b/cli/interactors_generator/interactors_generator.go index 79b7e0d..30af0dc 100644 --- a/cli/interactors_generator/interactors_generator.go +++ b/cli/interactors_generator/interactors_generator.go @@ -33,6 +33,7 @@ const ( CRUDLMethodList CRUDLMethod = "List" ) +// String returns the string representation of the CRUDL method. func (m CRUDLMethod) String() string { return string(m) }