feat: bootstrap supply intelligence baseline

This commit is contained in:
Your Name
2026-05-07 10:16:46 +08:00
commit afdbea6fb5
62 changed files with 9170 additions and 0 deletions

12
internal/httpapi/parse.go Normal file
View File

@@ -0,0 +1,12 @@
package httpapi
import "strconv"
func parseInt64(input string, target *int64) (int64, error) {
value, err := strconv.ParseInt(input, 10, 64)
if err != nil {
return 0, err
}
*target = value
return value, nil
}