├── .codebeatignore ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── doc.go ├── examples └── multiple.go ├── go.mod ├── property.go ├── property_test.go ├── state.go ├── state_test.go ├── stream.go └── stream_test.go /.codebeatignore: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/doc.go -------------------------------------------------------------------------------- /examples/multiple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/examples/multiple.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/imkira/go-observer/v2 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/property.go -------------------------------------------------------------------------------- /property_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/property_test.go -------------------------------------------------------------------------------- /state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/state.go -------------------------------------------------------------------------------- /state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/state_test.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/stream.go -------------------------------------------------------------------------------- /stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkira/go-observer/HEAD/stream_test.go --------------------------------------------------------------------------------