I’m newbie gopher and I know there is no inheritance in Golang so how do you accomplish above purpose??
Thanks.
1–3 of 3 posts
Thanks.
In Golang, interfaces are used to circumvent that feature. There is no inheritance, instead Gophers use interfaces in code to share functionality between structs.