mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
190 B
Go
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
|
|
}
|