Skip to content

Commit

Permalink
Fix closing brackets on tsbs_mongo_load
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramon Ribeiro committed Jun 8, 2023
1 parent e9a575f commit ee0cd3e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cmd/tsbs_load_mongo/creator.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package main
import (
"context"
"fmt"
"log"
"strings"

"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
"log"
"strings"
)

type dbCreator struct {
Expand All @@ -25,7 +25,6 @@ func (d *dbCreator) Init() {
if err != nil {
log.Println("Can't establish connection with", daemonURL)
log.Fatal(err)
}
}
}

Expand Down

0 comments on commit ee0cd3e

Please sign in to comment.