suyashkumar / dicom

⚡High Performance DICOM Medical Image Parser in Go.
MIT License
920 stars 133 forks source link

Remove Reader interface in favor of using the struct directly, use writer struct pointer for consistency #324

Closed suyashkumar closed 1 month ago

suyashkumar commented 1 month ago

Making this refactor, along with other API-breaking changes being made in the next release. If users need an interface, they can create one client-side as needed for their use cases! This also matches the Writer to use a pointer struct for consistency.

This closes #319.