Facebook
From Gentle Peccary, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 170
  1. func (s *Service) DoSomething(name string) error {
  2.  
  3.     s.d.Transaction(func(tx Interface) error {
  4.  
  5.     })
  6.  
  7. }
  8.  
  9. func (s *Service) transaction(fn func(tx Interface) error) error {
  10.     return s.d.Transaction(func(tx *db.ClusterTx) error {
  11.         return fn(tx)
  12.     })
  13. }

Replies to Untitled rss

Title Name Language When
Re: Untitled Scribby Motmot text 4 Years ago.