GO implementing interface that has unexported function [duplicate]
This question already has an answer here: Is it possible to implement an interface with unexported methods in another package? (1 answer) Closed 3 days ago. Project Structure ├── cmd │ └── main.go ├── go.mod └── internal └── testt main.go // main.go package main import ( “fmt” “example.com/myproject/internal/testt” ) // Define a struct abhi type […]