Guest User

Untitled

a guest
Jun 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. /*
  2. * Connect to the server and get a database handle
  3. */
  4. if dbSession, err = mgo.Dial("localhost:27017"); err != nil {
  5. panic(err)
  6. }
  7.  
  8. db = dbSession.DB("test")
  9. defer dbSession.Close()
Add Comment
Please, Sign In to add comment