mirror of
https://github.com/PretendoNetwork/super-mario-maker.git
synced 2026-08-03 00:41:40 -05:00
27 lines
338 B
Go
27 lines
338 B
Go
package main
|
|
|
|
import "io/ioutil"
|
|
|
|
/*
|
|
type Config struct {
|
|
Mongo struct {
|
|
}
|
|
Cassandra struct{}
|
|
}
|
|
*/
|
|
|
|
var hmacSecret []byte
|
|
|
|
func init() {
|
|
var err error
|
|
|
|
hmacSecret, err = ioutil.ReadFile("secret.key")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Connect to and setup databases
|
|
connectMongo()
|
|
connectCassandra()
|
|
}
|