package sharedaccount type Service struct { Db *Database } func NewService(database *Database) *Service { return &Service{Db: database} }