References
This section provides links to the API documentation for the it-happened library packages.
Package Documentation
- event package - Core event types and interfaces
- carrier package - Event carrier implementations
- inmemory package - In-memory bus implementation
Additional Resources
Viewing Documentation Locally
You can also view the documentation locally using the go doc command:
# View all documentation for a package
go doc -all github.com/thomas-marquis/it-happened/event
# View documentation for a specific type or function
go doc github.com/thomas-marquis/it-happened/event.Bus
go doc github.com/thomas-marquis/it-happened/event.New
Or start a local documentation server:
Then visit http://localhost:6060/pkg/github.com/thomas-marquis/it-happened/ in your browser.