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

11 lines
186 B
Go

package request
type LoginRequest struct {
Username string `json:"username"`
Password string `json:"password"`
}
type WxWorkExchangeRequest struct {
Ticket string `json:"ticket"`
}