yats.git

ref: dd78ecf99a5a618f9eb0f7d4332adba8d6e39da0

server/db/connection.go


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
package db

import (
	"yats-server/config"

	"github.com/gocql/gocql"
)

var Session *gocql.Session

func InitializeDb(configuration config.Configuration) *gocql.Session {
	cluster := gocql.NewCluster(configuration.DB_HOST)
	cluster.Authenticator = gocql.PasswordAuthenticator{Username: configuration.DB_USERNAME, Password: configuration.DB_PASSWORD}
	cluster.Keyspace = configuration.DB_NAME

	Session, _ := cluster.CreateSession()

	return Session
}