Files
ai-agent/internal/pkg/dto/request/auth_request.go
T

11 lines
186 B
Go
Raw Normal View History

2026-04-09 10:01:23 +08:00
package request
type LoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type WxWorkExchangeRequest struct {
Ticket string `json:"ticket"`
}