initial commit: Go version of SMS Receiver with fixed template rendering

- Implemented all core features from Python version
- Fixed int64/int type compatibility in template functions
- Added login authentication, SMS receiving, statistics, logs
- Independent database: sms_receiver_go.db
- Fixed frontend display issues for message list and statistics
This commit is contained in:
OpenClaw Agent
2026-02-08 17:15:22 +08:00
commit 4a31cd1115
23 changed files with 3493 additions and 0 deletions

30
.gitignore vendored Normal file
View File

@@ -0,0 +1,30 @@
# 编译的二进制文件
sms-receiver
sms-receiver-new
# 数据库文件
*.db
*.db-shm
*.db-wal
# 日志文件
*.log
nohup.out
# 临时文件
tmp/
*.tmp
# Go 相关
go.sum
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# 备份文件
*.bak
*.backup