mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
18 lines
237 B
Go
18 lines
237 B
Go
![]() |
package sync
|
||
|
|
||
|
var (
|
||
|
host1 = "127.0.0.1"
|
||
|
port1 = 3306
|
||
|
username1 = "root"
|
||
|
password1 = "123456"
|
||
|
database1 = "db"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
host2 = "127.0.0.1"
|
||
|
port2 = 3306
|
||
|
username2 = "root"
|
||
|
password2 = "123456"
|
||
|
database2 = "db"
|
||
|
)
|