mirror of
https://github.com/genxium/DelayNoMore
synced 2026-06-28 13:47:17 +00:00
Initial commit.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"secondsBeforeSummoning": 10,
|
||||
"protocol": "http",
|
||||
"host": "localhost",
|
||||
"port": 15351,
|
||||
"symmetricKey": ""
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"host": "localhost",
|
||||
"port": 3306,
|
||||
"dbname": "tsrht",
|
||||
"username": "root",
|
||||
"password": "root"
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"host": "localhost",
|
||||
"port": 6379,
|
||||
"dbname": 0,
|
||||
"password": ""
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"hostAndPort": "0.0.0.0:9992"
|
||||
}
|
||||
Binary file not shown.
@@ -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",
|
||||
}
|
||||
Reference in New Issue
Block a user