option: replace leveldb with redis in storing message code

This commit is contained in:
RockYang
2023-11-22 10:57:24 +08:00
parent b314dd0900
commit cfe6f27d48
12 changed files with 35 additions and 154 deletions

View File

@@ -1,5 +1,14 @@
package main
func main() {
import (
"fmt"
"strconv"
)
func main() {
value, err := strconv.Atoi("012345")
if err != nil {
panic(err)
}
fmt.Println(value)
}