Skip to content

Instantly share code, notes, and snippets.

@dickyaryag6
Created October 23, 2021 12:19
Show Gist options
  • Select an option

  • Save dickyaryag6/58791625019ba6ca4f3318f99854cf09 to your computer and use it in GitHub Desktop.

Select an option

Save dickyaryag6/58791625019ba6ca4f3318f99854cf09 to your computer and use it in GitHub Desktop.
package repository
import (
"fmt"
)
type Database struct {}
func New(db Database) Database {
return db
}
func (db Database) Insert(value int) error {
fmt.Println("Inserting to database ...")
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment