feat: add invitation and promotion functions

This commit is contained in:
RockYang
2023-11-23 16:30:15 +08:00
parent d35164506a
commit a4a1eec30b
17 changed files with 627 additions and 70 deletions

View File

@@ -2,13 +2,12 @@ package main
import (
"fmt"
"strconv"
"reflect"
"time"
)
func main() {
value, err := strconv.Atoi("012345")
if err != nil {
panic(err)
}
fmt.Println(value)
r := time.Now()
f := reflect.ValueOf(r)
fmt.Println(f.Type().Kind())
}