初始化项目

This commit is contained in:
BBIT-Kai
2026-05-26 11:51:57 +08:00
commit 6878f4ea5f
15 changed files with 4258 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package api
import (
"sentinel/app/model"
)
const (
analyticsURL = "/api/public/sentinel-record-analytics"
)
func Analytics(req model.Record) error {
return Post(analyticsURL, req, nil)
}