├── .gitignore ├── LICENSE ├── README.md ├── codec └── codec.go ├── go.mod ├── io ├── chanel.go ├── client.go ├── handler.go └── server.go └── test ├── client_test.go └── server_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/README.md -------------------------------------------------------------------------------- /codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/codec/codec.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/StephenFaust/noa 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /io/chanel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/io/chanel.go -------------------------------------------------------------------------------- /io/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/io/client.go -------------------------------------------------------------------------------- /io/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/io/handler.go -------------------------------------------------------------------------------- /io/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/io/server.go -------------------------------------------------------------------------------- /test/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/test/client_test.go -------------------------------------------------------------------------------- /test/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephenFaust/noa/HEAD/test/server_test.go --------------------------------------------------------------------------------