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 +}