package server func ptrInt(x int) *int { return &x } func ptrString(x string) *string { return &x }