mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-04 04:30:21 +00:00
9 lines
402 B
Scala
9 lines
402 B
Scala
// Copyright (c) 2017 PSForever
|
|
import com.github.mauricio.async.db.Connection
|
|
import com.github.mauricio.async.db.mysql.MySQLConnection
|
|
import com.github.mauricio.async.db.mysql.util.URLParser
|
|
|
|
object DatabaseConnector {
|
|
val accounts_db = URLParser.parse("jdbc:mysql://localhost:3306/psforever-accounts?user=root&password=PSForever")
|
|
def getAccountsConnection = new MySQLConnection(accounts_db)
|
|
}
|