From b1759f9cf5ce8209489fb7da412fbfb367741f00 Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Tue, 3 Jun 2025 10:31:06 +0000 Subject: [PATCH] Provide structs to be used in auto generated code Signed-off-by: Prabhjot Singh Sethi --- model/route.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 model/route.go diff --git a/model/route.go b/model/route.go new file mode 100644 index 0000000..cf4bba3 --- /dev/null +++ b/model/route.go @@ -0,0 +1,11 @@ +// Copyright © 2025 Prabhjot Singh Sethi, All Rights reserved +// Author: Prabhjot Singh Sethi + +package model + +import "github.com/go-core-stack/auth/route" + +type Route struct { + Url string + Method route.MethodType +}