├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd.go ├── cmd └── main.go ├── cmd_gen.go ├── danmu.go ├── doc └── 后端WebSocket接口.md ├── global.go ├── go.mod ├── go.sum ├── main.go ├── stderr_linux.go ├── stderr_unix.go ├── stderr_windows.go └── tests ├── danmuClient ├── README.md └── client.go ├── forward └── forward.go └── obsClient ├── README.md └── client.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/README.md -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/cmd.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/cmd_gen.go -------------------------------------------------------------------------------- /danmu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/danmu.go -------------------------------------------------------------------------------- /doc/后端WebSocket接口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/doc/后端WebSocket接口.md -------------------------------------------------------------------------------- /global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/global.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/main.go -------------------------------------------------------------------------------- /stderr_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/stderr_linux.go -------------------------------------------------------------------------------- /stderr_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/stderr_unix.go -------------------------------------------------------------------------------- /stderr_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/stderr_windows.go -------------------------------------------------------------------------------- /tests/danmuClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/tests/danmuClient/README.md -------------------------------------------------------------------------------- /tests/danmuClient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/tests/danmuClient/client.go -------------------------------------------------------------------------------- /tests/forward/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/tests/forward/forward.go -------------------------------------------------------------------------------- /tests/obsClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/tests/obsClient/README.md -------------------------------------------------------------------------------- /tests/obsClient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACFUN-FOSS/acfunlive-backend/HEAD/tests/obsClient/client.go --------------------------------------------------------------------------------