Skip to content

Instantly share code, notes, and snippets.

@ilmiawan
Created January 1, 2021 03:17
Show Gist options
  • Save ilmiawan/a7564cc6d484ff41d8c19bf6c4e18fb9 to your computer and use it in GitHub Desktop.
Save ilmiawan/a7564cc6d484ff41d8c19bf6c4e18fb9 to your computer and use it in GitHub Desktop.
contoh object constructor
type service struct {
client Client
}
// Service interface
type Service interface {
GetUserDetailsByUserID(id int) (DetailsResponse, error)
}
// NewService initialize function
func NewService(cli Client) Service {
return &service{cli}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment