Skip to content

Commit

Permalink
fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
ian60509 committed Sep 11, 2024
1 parent 73aada5 commit 31b4a3b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions internal/sbi/api_groupIdMap.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ package sbi

import (
"net/http"

"github.com/gin-gonic/gin"
)

func (s *Server) getGroupIdMap() []Route {
return []Route{
{
Name: "Index",
Method: "GET",
Pattern: "/",
Name: "Index",
Method: "GET",
Pattern: "/",
HandlerFunc: Index,
},
{
Expand All @@ -23,6 +24,6 @@ func (s *Server) getGroupIdMap() []Route {
}

// GetNfGroupIDs - Retrieves NF-Group IDs for provided Subscriber and NF types
func (s *Server)HTTPGetNfGroupIDs(c *gin.Context) {
func (s *Server) HTTPGetNfGroupIDs(c *gin.Context) {
c.JSON(http.StatusNotImplemented, gin.H{})
}
}

0 comments on commit 31b4a3b

Please sign in to comment.