mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
16 lines
339 B
Go
16 lines
339 B
Go
package databases
|
|
|
|
type CreateReadOnlyUserResponse struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
type IsReadOnlyResponse struct {
|
|
IsReadOnly bool `json:"isReadOnly"`
|
|
Privileges []string `json:"privileges"`
|
|
}
|
|
|
|
type VerifyAgentTokenRequest struct {
|
|
Token string `json:"token" binding:"required"`
|
|
}
|