helpers.go 93 B

12345678
  1. package handlers
  2. func strPtr(s string) *string {
  3. if s == "" {
  4. return nil
  5. }
  6. return &s
  7. }