helpers.go

1package main
2
3func stringPtr(s string) *string {
4	return &s
5}