add tool。
Some checks failed
Deploy / Build (push) Failing after 1m55s

This commit is contained in:
luocai
2025-06-28 15:09:13 +08:00
parent 73bd900000
commit f5c76b931f
13 changed files with 285 additions and 18 deletions

View File

@ -13,6 +13,15 @@ struct VisitorStats {
int64_t lastViewTime = 0;
};
struct VisitRecord {
int id;
std::string url;
std::string visitorUuid;
std::string lastUserAgent;
int lastViewTime;
int pageViewCount;
};
struct SiteStats {
int totalViews = 0;
int totalVisitors = 0;