Skip to content

Commit

Permalink
feat: add IntBoardArrayPtr to `HelperService
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Guimaraes <[email protected]>
  • Loading branch information
gabrielg2020 committed Oct 25, 2024
1 parent a745afe commit 2b28dd4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/service/helper_service/helper_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ func StrPtr(s string) *string {

func BoolPtr(b bool) *bool {
return &b
}

func IntBoardArrayPtr(a [8][8]int) *[8][8]int {
return &a
}

0 comments on commit 2b28dd4

Please sign in to comment.