1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-25 10:33:45 +02:00

Convert hard tabs to soft.

This commit is contained in:
Henrik Hautakoski 2022-01-04 09:52:42 +01:00
parent 1dc31db4e1
commit fa9a943215
No known key found for this signature in database
GPG key ID: 608414D93E862CCD
7 changed files with 259 additions and 259 deletions

View file

@ -9,9 +9,9 @@ package utils
// ---------------------------------------------------------
func JsonGetInt64(input interface{}) (int64) {
v, res := input.(float64)
if res {
return (int64) (v)
}
return 0
v, res := input.(float64)
if res {
return (int64) (v)
}
return 0
}