Files
crawlab/core/interfaces/user_service_options.go
2024-06-14 15:42:50 +08:00

14 lines
190 B
Go

package interfaces
type UserCreateOptions struct {
Username string
Password string
Email string
Role string
}
type UserLoginOptions struct {
Username string
Password string
}