suyashkumar / dicom

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

What's the right import statement to use this? #283

Closed toli closed 10 months ago

toli commented 10 months ago

Hi Apologies for the dumb question I may have not played with Go for 5+ years What do I need to put in import to access this? Back in my days "go get" was enough but I think that changed, so I need other files too

And I'm going to build something for my friend that's doing radiology for UCSF hospital in SF, and this will be fun

toli commented 10 months ago

seems that it works if i have a go.mod file containing the following

module nick-radiogogy
go 1.21.1

require (
    github.com/suyashkumar/dicom v1.0.6
)

and go.sum get created by itself

toli commented 10 months ago

closing this since it seems to work