I was going to make my first exported package today and this video was super helpful and clear. Thanks! Subscribed
@brianmmdev2 жыл бұрын
Glad it was helpful! Thank you!
@yusufmalikul Жыл бұрын
Fast and straight to the point! Thanks!
@matiasgabrielpatzer20732 жыл бұрын
Excelent video! Very well and simply explained. Keep it going with the Go content!
@brianmmdev2 жыл бұрын
Thank you!
@drgold199910 ай бұрын
Exactly the vid i was looking for, ty
@JoeNgera7 ай бұрын
Thanks so much. simple but to the point. love it
@erik.andri12 Жыл бұрын
This is helpful for me, thanks!
@abdulhamidkhorajiya22562 жыл бұрын
Your explanation is very good. Please make more go project related videos
@brianmmdev2 жыл бұрын
Thanks! Lots of Go content planned for the coming year!
@CodeWithLakshan Жыл бұрын
Great explanation. Thanks!
@gusjoagomez Жыл бұрын
Thanks!! Great video!!
@dddd1762 жыл бұрын
I published my first module thanks to you.
@brianmmdev2 жыл бұрын
Awesome! Congrats! So happy to have helped 😊
@eduardosalles9212 Жыл бұрын
very good.. thank you
@paschalokafor9043 Жыл бұрын
Thank you
@jaimeflores78142 жыл бұрын
This is great! What if I want to create locally a custom generic module that I could use in different projects or from other modules?
@brianmmdev2 жыл бұрын
Thanks! You'll want to use the `replace` keyword in your go.mod file. I did this in an open source project I built, feel free to use it as a reference: github.com/GuardianForge/guardianforge.net/blob/6584d0d36a6a0f7eaa642a910a0bb84d1ea27153/backend/core/go.mod#L5
@jaimeflores78142 жыл бұрын
@@brianmmdev, thank you again. But let us suppose I want to create a library locally, a library that I can use in different projects (projects with modules.) How can I do that? How can I compile my library and then how can I imported in other projects?
@why_im_lonely Жыл бұрын
thx
@arshadsiddiqui9071 Жыл бұрын
Nice video! Glad its sub 10m because my patience is super tiny. Gonna use this to create requests with JSON without having to write out each step over and over again. (Anyone with a better idea can feel free to share) Edit: Managed to publish my first package but I'm having trouble bringing down the updated package into my second project. 'go get -u doesn't do it'.
@brianmmdev Жыл бұрын
Are you pulling with `github.com/USERNAME/PACKAGE_NAME`? Also, is the repo public? Not sure of a way off hand to do it with a private repo.
@webpro9083 Жыл бұрын
This works for Lamda functions right? Go modules(.so) doesn't works on windows