All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 5m55s
实现联系信息提交功能,包括: 1. 新增ContactRequest类型定义 2. 添加POST /contact路由 3. 实现联系信息提交处理逻辑 4. 通过Telegram发送联系信息通知 5. 在Telegram配置中添加GroupChatID字段
9 lines
263 B
Go
9 lines
263 B
Go
package types
|
|
|
|
type ContactRequest struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Email string `json:"email" validate:"required,email"`
|
|
OtherContact string `json:"other_contact,omitempty"`
|
|
Notes string `json:"notes,omitempty"`
|
|
}
|