Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-10-02 | Rename Soundbox to Client | xegineering | |
Since the module name is `soundbox` naming the primary type of the module also `Soundbox` is redundant. Following similar code from the Go standard library this struct is renamed to `Client`. | |||
2024-10-02 | Use testing.Fatalf() to log in tests | xegineering | |
Using testing.Errorf() does not stop the test. This was never wanted. | |||
2024-10-01 | Make soundbox package top-level | xegineering | |
It is not expected that this library will be so big that multiple packages make sense. Thus it should start only with the main package. |