├── .github └── workflows │ └── test.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd └── go-mysql-mongodb │ └── main.go ├── etc └── river.toml ├── go.mod ├── go.sum ├── mongodb ├── client.go └── client_test.go ├── river ├── config.go ├── master.go ├── river.go ├── river_test.go ├── rule.go ├── status.go └── sync.go └── tests ├── check_contains ├── river.toml └── run.sh /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/README.md -------------------------------------------------------------------------------- /cmd/go-mysql-mongodb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/cmd/go-mysql-mongodb/main.go -------------------------------------------------------------------------------- /etc/river.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/etc/river.toml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/go.sum -------------------------------------------------------------------------------- /mongodb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/mongodb/client.go -------------------------------------------------------------------------------- /mongodb/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/mongodb/client_test.go -------------------------------------------------------------------------------- /river/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/config.go -------------------------------------------------------------------------------- /river/master.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/master.go -------------------------------------------------------------------------------- /river/river.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/river.go -------------------------------------------------------------------------------- /river/river_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/river_test.go -------------------------------------------------------------------------------- /river/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/rule.go -------------------------------------------------------------------------------- /river/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/status.go -------------------------------------------------------------------------------- /river/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/river/sync.go -------------------------------------------------------------------------------- /tests/check_contains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/tests/check_contains -------------------------------------------------------------------------------- /tests/river.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/tests/river.toml -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXiangUSTC/go-mysql-mongodb/HEAD/tests/run.sh --------------------------------------------------------------------------------