Refactor and remove sqlite and replace with MySQL
This commit is contained in:
8
internal/helpers/strconv.go
Normal file
8
internal/helpers/strconv.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package helpers
|
||||
|
||||
import "strconv"
|
||||
|
||||
func Atoi(s string) int {
|
||||
n, _ := strconv.Atoi(s)
|
||||
return n
|
||||
}
|
||||
Reference in New Issue
Block a user