Skip to content

Commit 481d1e5

Browse files
authored
Update helpers.go
1 parent a1725f2 commit 481d1e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

helpers/helpers.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package helpers
2+
23
import (
34
"strconv"
45
)
56

67
//Int64ToString function convert a float number to a string
78
func Int64ToString(inputNum int64) string {
8-
return strconv.FormatInt(inputNum, 10)
9+
return strconv.FormatInt(inputNum, 10)
910
}

0 commit comments

Comments
 (0)