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

15 lines
254 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"`
}
2026-05-24 20:49:10 +08:00
type OIDCExchangeRequest struct {
Ticket string `json:"ticket"`
}