Initial commit.

This commit is contained in:
genxium
2022-09-20 23:50:01 +08:00
commit e90a335c56
432 changed files with 101884 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"secondsBeforeSummoning": 10,
"protocol": "http",
"host": "localhost",
"port": 15351,
"symmetricKey": ""
}

View File

@@ -0,0 +1,7 @@
{
"host": "localhost",
"port": 3306,
"dbname": "tsrht",
"username": "root",
"password": "root"
}

Binary file not shown.

View File

@@ -0,0 +1,6 @@
{
"host": "localhost",
"port": 6379,
"dbname": 0,
"password": ""
}

View File

@@ -0,0 +1,3 @@
{
"hostAndPort": "0.0.0.0:9992"
}

Binary file not shown.

View File

@@ -0,0 +1,33 @@
package configs
type WechatConfig struct {
ApiProtocol string
ApiGateway string
AppID string
AppSecret string
}
// Fserver
var WechatConfigIns = WechatConfig{
ApiProtocol: "http",
ApiGateway: "119.29.236.44:8089",
AppID: "wx5432dc1d6164d4e",
AppSecret: "secret1",
}
/*
// Production
var WechatConfigIns = WechatConfig {
ApiProtocol: "https",
ApiGateway: "api.weixin.qq.com",
AppID: "wxe7063ab415266544",
AppSecret: "secret1",
}
*/
var WechatGameConfigIns = WechatConfig{
ApiProtocol: "https",
ApiGateway: "api.weixin.qq.com",
AppID: "wxf497c910a2a25edc",
AppSecret: "secret1",
}