api/role/getRole.go
Similar blocks of code found in 2 locations. Consider refactoring.package role import ( . "github.com/firmanJS/boillerplate-fiber/config" . "github.com/firmanJS/boillerplate-fiber/models" "github.com/firmanJS/boillerplate-fiber/helpers" "github.com/gofiber/fiber/v2" "go.mongodb.org/mongo-driver/bson/primitive" "go.mongodb.org/mongo-driver/bson") func GetSingle(ctx *fiber.Ctx) error { id := ctx.Params("id") roleId, parseError := primitive.ObjectIDFromHex(id) if parseError != nil { return helpers.BadResponse(ctx, "Bad Request", parseError.Error()) } collection := Instance.Database.Collection("role") query := bson.D{{Key: "_id", Value: roleId}} rawRecord := collection.FindOne(ctx.Context(), query) record := &Role{} rawRecord.Decode(record) if rawRecord.Err() != nil { return helpers.NotFoundResponse(ctx, "Data not found in database") } else { return helpers.CrudResponse(ctx, "Get", record) }}