├── DMconfig └── config │ └── config.go ├── LICENSE ├── README.md ├── dbConn ├── _type │ └── type.go ├── config │ └── config.go ├── mysql │ └── conn.go └── redisConn │ └── conn.go ├── doc ├── 协议.png ├── 微服务架构图.png └── 流程图.png ├── go.mod ├── go.sum ├── lib └── lib.go ├── persistServer ├── item │ └── item.go ├── mapping.txt ├── rpcsupport │ ├── lib.go │ └── rpc.go ├── run │ └── persistServerRun.go └── server │ ├── Saver.go │ ├── email.go │ └── select.go ├── spider ├── DYtype │ └── BarrageCodeBreakers.go ├── client │ ├── client.go │ ├── itemSaver.go │ └── sendEmail.go └── run │ └── spiderRun.go └── web ├── client └── client.go ├── server ├── _type │ └── stractType.go ├── handler │ ├── errorHandler.go │ └── search.go ├── route │ └── route.go └── web.go └── util └── util.go /DMconfig/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/DMconfig/config/config.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/README.md -------------------------------------------------------------------------------- /dbConn/_type/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/dbConn/_type/type.go -------------------------------------------------------------------------------- /dbConn/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/dbConn/config/config.go -------------------------------------------------------------------------------- /dbConn/mysql/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/dbConn/mysql/conn.go -------------------------------------------------------------------------------- /dbConn/redisConn/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/dbConn/redisConn/conn.go -------------------------------------------------------------------------------- /doc/协议.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/doc/协议.png -------------------------------------------------------------------------------- /doc/微服务架构图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/doc/微服务架构图.png -------------------------------------------------------------------------------- /doc/流程图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/doc/流程图.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/go.sum -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/lib/lib.go -------------------------------------------------------------------------------- /persistServer/item/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/item/item.go -------------------------------------------------------------------------------- /persistServer/mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/mapping.txt -------------------------------------------------------------------------------- /persistServer/rpcsupport/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/rpcsupport/lib.go -------------------------------------------------------------------------------- /persistServer/rpcsupport/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/rpcsupport/rpc.go -------------------------------------------------------------------------------- /persistServer/run/persistServerRun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/run/persistServerRun.go -------------------------------------------------------------------------------- /persistServer/server/Saver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/server/Saver.go -------------------------------------------------------------------------------- /persistServer/server/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/server/email.go -------------------------------------------------------------------------------- /persistServer/server/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/persistServer/server/select.go -------------------------------------------------------------------------------- /spider/DYtype/BarrageCodeBreakers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/spider/DYtype/BarrageCodeBreakers.go -------------------------------------------------------------------------------- /spider/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/spider/client/client.go -------------------------------------------------------------------------------- /spider/client/itemSaver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/spider/client/itemSaver.go -------------------------------------------------------------------------------- /spider/client/sendEmail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/spider/client/sendEmail.go -------------------------------------------------------------------------------- /spider/run/spiderRun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/spider/run/spiderRun.go -------------------------------------------------------------------------------- /web/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/client/client.go -------------------------------------------------------------------------------- /web/server/_type/stractType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/server/_type/stractType.go -------------------------------------------------------------------------------- /web/server/handler/errorHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/server/handler/errorHandler.go -------------------------------------------------------------------------------- /web/server/handler/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/server/handler/search.go -------------------------------------------------------------------------------- /web/server/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/server/route/route.go -------------------------------------------------------------------------------- /web/server/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/server/web.go -------------------------------------------------------------------------------- /web/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaxichen/DY-DanMu/HEAD/web/util/util.go --------------------------------------------------------------------------------