Mirror of a distributed, offline-first bug tracker embedded in git
1package graphql 2 3func OneShot(resp *Response) func() *Response { 4 var oneshot bool 5 6 return func() *Response { 7 if oneshot { 8 return nil 9 } 10 oneshot = true 11 12 return resp 13 } 14}